Elin Decompiled Documentation EA 23.183 Nightly Patch 1
Loading...
Searching...
No Matches
AI_Idle.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using UnityEngine;
5
6public class AI_Idle : AIAct
7{
8 public enum Behaviour
9 {
10 Default,
11 NoMove
12 }
13
14 public int maxRepeat = 10;
15
16 public int moveFailCount;
17
18 private static List<BaseArea> _listRoom = new List<BaseArea>();
19
20 public override bool IsIdle => !base.IsChildRunning;
21
22 public override bool InformCancel => false;
23
24 public override int MaxRestart => maxRepeat;
25
26 public override void OnStart()
27 {
28 owner.SetTempHand(-1, -1);
29 owner.ShowEmo();
30 }
31
32 public override IEnumerable<Status> Run()
33 {
34 while (true)
35 {
36 if (owner.held != null)
37 {
39 }
40 if (owner.nextUse != null)
41 {
42 Thing nextUse = owner.nextUse;
43 owner.nextUse = null;
44 if (nextUse.parent == owner && !nextUse.isDestroyed)
45 {
46 owner.TryUse(nextUse);
47 }
48 yield return KeepRunning();
49 }
51 {
52 if (EClass.rnd(5) == 0)
53 {
54 owner.Talk("onFire");
55 }
57 {
58 yield return Restart();
59 }
60 }
61 if (EClass.rnd(owner.IsPCParty ? 10 : 100) == 0 && owner.hunger.GetPhase() >= 3)
62 {
63 Thing thing = (owner.IsPCFaction ? owner.FindBestFoodToEat() : owner.things.Find((Thing a) => owner.CanEat(a, owner.IsPCFaction) && !a.c_isImportant, recursive: false));
64 if (thing == null && owner.IsPCFaction && EClass._zone.IsPCFaction)
65 {
67 if (thing != null)
68 {
69 owner.Pick(thing);
70 }
71 }
72 if (thing == null && !owner.IsPCParty)
73 {
74 if (!owner.IsPCFaction && EClass.rnd(8) != 0)
75 {
76 owner.hunger.Mod(-30);
77 }
78 else if (!owner.things.IsFull())
79 {
80 thing = ThingGen.CreateFromCategory("food", EClass.rnd(EClass.rnd(60) + 1) + 10);
81 if (thing.trait.CanEat(owner))
82 {
83 thing.isNPCProperty = true;
84 thing = owner.AddThing(thing);
85 }
86 else
87 {
88 thing = null;
89 }
90 }
91 }
92 if (thing != null)
93 {
95 {
96 owner.InstantEat(thing, sound: false);
97 yield return Restart();
98 }
99 else if (thing.Num == 1 || !owner.things.IsFull())
100 {
101 yield return Do(new AI_Eat
102 {
103 target = thing
104 });
105 }
106 }
107 }
108 if (!EClass._zone.IsRegion)
109 {
110 if (EClass.rnd(10) == 0 && owner.ability.Has(6627) && ((float)owner.hp < (float)owner.MaxHP * 0.8f || EClass.rnd(10) == 0) && owner.GetNearbyCatToSniff() != null && !owner.HasCondition<ConHOT>())
111 {
113 yield return KeepRunning();
114 }
115 if (EClass.rnd(3) == 0 && owner.mana.value > 0)
116 {
117 Act act = null;
118 Act actRevive = null;
119 foreach (ActList.Item item in owner.ability.list.items)
120 {
121 Act act2 = item.act;
122 if (act2.id == 8430)
123 {
124 actRevive = act2;
125 }
126 string[] abilityType = act2.source.abilityType;
127 if (!abilityType.IsEmpty() && (abilityType[0] == "heal" || abilityType[0] == "hot"))
128 {
129 act = item.act;
130 }
131 }
132 if (act != null)
133 {
134 List<Chara> list = (owner.IsPCParty ? EClass.pc.party.members : new List<Chara> { owner });
135 foreach (Chara item2 in list)
136 {
137 if (!((float)item2.hp > (float)item2.MaxHP * 0.75f) && owner.CanSeeLos(item2) && (!(act.source.abilityType[0] == "hot") || !item2.HasCondition<ConHOT>()))
138 {
139 owner.UseAbility(act, item2);
140 yield return KeepRunning();
141 break;
142 }
143 }
144 }
145 if (actRevive != null && owner.IsPCFaction && EClass.game.cards.globalCharas.Where((KeyValuePair<int, Chara> a) => a.Value.isDead && a.Value.faction == EClass.pc.faction && !a.Value.isSummon && a.Value.c_wasInPcParty).ToList().Count > 0 && owner.UseAbility(actRevive.source.alias, owner))
146 {
147 yield return KeepRunning();
148 }
149 }
150 }
152 {
154 if (owner.sharedCheckTurn < 0 && EClass.rnd(EClass.debug.enable ? 2 : 20) == 0)
155 {
158 owner.sharedCheckTurn += (EClass.debug.enable ? 20 : 200);
159 }
160 }
161 if ((EClass._zone is Zone_Civilized || EClass._zone.IsPCFaction) && (owner.IsPCParty ? 10 : (owner.IsPCFaction ? 2 : 0)) > EClass.rnd(100))
162 {
163 Thing thing2 = owner.things.Find("polish_powder");
164 if (thing2 != null && EClass._map.props.installed.Find<TraitGrindstone>() != null)
165 {
166 foreach (Thing thing8 in owner.things)
167 {
168 if (!thing8.IsEquipment || thing8.encLV >= 0)
169 {
170 continue;
171 }
172 for (int i = 0; i < 5; i++)
173 {
174 if (thing8.encLV >= 0)
175 {
176 break;
177 }
178 owner.Say("polish", owner, thing8);
179 thing8.ModEncLv(1);
180 thing2.ModNum(-1);
181 if (thing2.isDestroyed)
182 {
183 break;
184 }
185 }
186 if (thing2.isDestroyed)
187 {
188 break;
189 }
190 }
191 }
192 }
193 if (owner.IsPCParty)
194 {
196 {
197 TraitShackle traitShackle = owner.pos.FindThing<TraitShackle>();
198 if (traitShackle != null && traitShackle.AllowTraining)
199 {
201 {
202 shackle = traitShackle
203 });
204 }
205 yield return Restart();
206 }
207 if (EClass.rnd(20) == 0)
208 {
209 Thing thing3 = owner.things.Find((Thing a) => a.parent == owner && a.isGifted && (a.category.id == "skillbook" || a.category.id == "ancientbook"));
210 if (thing3 != null && thing3.trait.CanRead(owner) && (thing3.Num == 1 || !owner.things.IsFull()))
211 {
212 yield return Do(new AI_Read
213 {
214 target = thing3
215 });
216 }
217 }
218 if (EClass.rnd(100) == 0 && !EClass._zone.IsRegion && owner.HasElement(1227))
219 {
220 List<Chara> list2 = new List<Chara>();
221 foreach (Chara member in EClass.pc.party.members)
222 {
223 if (member.Evalue(1227) > 0)
224 {
225 list2.Add(member);
226 }
227 }
228 if (list2.Count > 2)
229 {
230 list2.Remove(owner);
231 owner.SetEnemy(list2.RandomItem());
232 yield return Success();
233 }
234 }
235 if (EClass.rnd(150) == 0 && owner.host != null && owner.host.parasite == owner && owner.GetInt(108) == 1)
236 {
237 owner.host.PlaySound("whip");
238 owner.host.Say("use_whip3", owner, owner.host);
239 owner.Talk("insult");
240 owner.host.PlayAnime(AnimeID.Shiver);
241 owner.host.DamageHP(5 + EClass.rndHalf(owner.host.MaxHP / 5), 919, 100, AttackSource.Condition);
243 yield return KeepRunning();
244 }
245 if (EClass.rnd(EClass.debug.enable ? 2 : 20) == 0 && owner.CanSee(EClass.pc) && !(EClass.pc.ai is AI_Eat))
246 {
248 }
249 if (owner.isSynced && EClass.rnd((owner.host == null) ? 200 : 150) == 0 && owner.GetInt(106) == 0)
250 {
251 if (EClass.rnd(2) == 0 && owner.GetInt(108) == 1)
252 {
253 owner.Talk("insult");
254 }
255 else
256 {
258 }
259 }
260 if (EClass.rnd(100) == 0 && EClass._zone.IsTown)
261 {
263 }
264 if ((EClass.rnd(20) == 0 || EClass.debug.enable) && owner.GetCurrency() >= 500)
265 {
266 bool flag = EClass._zone.IsTown;
268 {
269 foreach (Chara member2 in EClass._zone.branch.members)
270 {
271 if (member2.ExistsOnMap && member2.trait is TraitTrainer)
272 {
273 flag = true;
274 }
275 }
276 }
277 if (flag)
278 {
279 bool flag2 = false;
280 foreach (Element value in owner.elements.dict.Values)
281 {
282 if (!(value.source.category != "skill") && value.vTempPotential < 900)
283 {
284 flag2 = true;
285 break;
286 }
287 }
288 if (flag2)
289 {
290 int num = owner.GetCurrency();
291 if (num >= 20000)
292 {
293 num = 20000;
294 }
295 owner.PlaySound("pay");
296 int num2 = num / 200;
297 foreach (Element value2 in owner.elements.dict.Values)
298 {
299 if (!(value2.source.category != "skill"))
300 {
301 int num3 = num2 * 100 / (100 + (100 + value2.vTempPotential / 2 + value2.ValueWithoutLink) * (100 + value2.vTempPotential / 2 + value2.ValueWithoutLink) / 100);
302 num3 += 1 + EClass.rnd(3);
303 owner.elements.ModTempPotential(value2.id, Mathf.Max(1, num3), 9999);
304 }
305 }
306 Msg.Say("party_train", owner, Lang._currency(num));
307 owner.PlaySound("ding_potential");
308 owner.ModCurrency(-num);
309 }
310 }
311 }
312 }
313 if (owner.c_uidMaster != 0)
314 {
315 Chara chara = owner.master;
316 if (chara == null || !chara.IsAliveInCurrentZone)
317 {
318 chara = owner.FindMaster();
319 }
320 if (chara != null && chara.IsAliveInCurrentZone)
321 {
322 if (owner.enemy == null)
323 {
324 owner.SetEnemy(chara.enemy);
325 }
326 int num4 = owner.Dist(chara.pos);
327 if (owner.source.aiIdle != "root" && num4 > EClass.game.config.tactics.AllyDistance(owner) && EClass._zone.PetFollow && owner.c_minionType == MinionType.Default)
328 {
329 if (owner.HasAccess(chara.pos))
330 {
331 owner.TryMoveTowards(chara.pos);
332 }
333 yield return KeepRunning();
334 continue;
335 }
336 }
337 }
338 Party party = owner.party;
339 if (party == null || party.leader == owner || !party.leader.IsAliveInCurrentZone || owner.host != null || !EClass._zone.PetFollow)
340 {
341 break;
342 }
343 if (owner.source.aiIdle == "root")
344 {
345 yield return KeepRunning();
346 continue;
347 }
349 {
350 yield return KeepRunning();
351 continue;
352 }
353 if (owner.HasAccess(party.leader.pos) && owner.TryMoveTowards(party.leader.pos) == Card.MoveResult.Fail && owner.Dist(party.leader) > 4)
354 {
356 bool flag3 = (EClass._zone is Zone_Civilized || EClass._zone.IsPCFaction) && (EClass.pc.enemy == null || !EClass.pc.enemy.IsAliveInCurrentZone);
357 if (moveFailCount >= (flag3 ? 100 : 10))
358 {
359 owner.Teleport(party.leader.pos.GetNearestPoint(allowBlock: false, allowChara: false, allowInstalled: true, ignoreCenter: true), silent: false, force: true);
360 moveFailCount = 0;
361 }
362 }
363 else
364 {
365 moveFailCount = 0;
366 }
367 yield return KeepRunning();
368 }
369 if (EClass._zone.IsNefia && EClass._zone.Boss == owner && EClass.rnd(20) == 0)
370 {
372 }
373 if (EClass._zone.IsRegion && EClass.rnd(10) != 0)
374 {
375 yield return Restart();
376 }
377 if (((owner.homeBranch != null && owner.homeBranch == EClass.Branch && EClass.rnd(100) == 0) || (owner.IsGuest() && EClass.rnd(50) == 0)) && owner.FindBed() == null)
378 {
380 }
381 if (owner.id == "geist" && EClass.rnd(20) == 0)
382 {
383 Point nearestPoint = EClass.pc.pos.GetNearestPoint(allowBlock: false, allowChara: false);
384 if (nearestPoint != null)
385 {
386 foreach (Chara item3 in nearestPoint.ListCharasInRadius(owner, 6, (Chara _c) => _c != owner && !_c.IsPCFactionOrMinion))
387 {
388 item3.Teleport(nearestPoint.GetNearestPoint(allowBlock: false, allowChara: false) ?? nearestPoint);
389 }
390 if (owner != null)
391 {
393 {
394 EClass.pc.ai.Cancel();
395 }
396 owner.Teleport(nearestPoint);
397 }
398 yield return Success();
399 }
400 }
402 {
403 Room room = owner.pos.cell.room;
404 if (room != null)
405 {
406 Point point = null;
407 if (owner.memberType == FactionMemberType.Guest && room.data.accessType != 0)
408 {
409 point = FindMovePoint(BaseArea.AccessType.Public);
410 }
411 else if (owner.memberType == FactionMemberType.Default && room.data.accessType == BaseArea.AccessType.Private)
412 {
413 point = FindMovePoint(BaseArea.AccessType.Resident) ?? FindMovePoint(BaseArea.AccessType.Public);
414 }
415 if (point != null)
416 {
417 yield return DoGoto(point);
418 }
419 }
420 }
422 {
423 if (owner.IsPCFaction && owner.GetInt(32) + 4320 < EClass.world.date.GetRaw())
424 {
425 if (owner.GetInt(32) != 0 && Zone.okaerinko < 10)
426 {
427 owner.Talk("welcomeBack");
428 Zone.okaerinko++;
429 }
431 }
433 {
434 if (EClass.rnd(5) == 0 && owner.hostility >= Hostility.Neutral && EClass.pc.IsPCC && EClass.pc.pccData.state == PCCState.Undie && !EClass.pc.pos.cell.IsTopWaterAndNoSnow)
435 {
436 owner.Talk("pervert3");
437 }
438 else if (EClass.rnd(15) == 0 && EClass._zone.IsTown && owner.hostility >= Hostility.Neutral && !owner.IsPCFaction && !EClass.pc.HasCondition<ConIncognito>())
439 {
440 bool flag4 = EClass._zone is Zone_Derphy;
441 string text = ((EClass.player.karma > 10) ? ((EClass.player.karma < 90) ? "" : (flag4 ? "rumor_bad" : "rumor_good")) : (flag4 ? "rumor_good" : "rumor_bad"));
442 if (!text.IsEmpty())
443 {
444 owner.Talk(text);
445 }
446 if ((flag4 ? (EClass.player.karma >= 90) : (EClass.player.karma <= 10)) && EClass.rnd(10) == 0)
447 {
448 Thing t2 = ThingGen.Create("stone");
449 AI_PlayMusic.ignoreDamage = true;
451 AI_PlayMusic.ignoreDamage = false;
452 }
453 }
454 else
455 {
456 owner.TalkTopic("fov");
457 }
458 owner.turnLastSeen = EClass.player.stats.turns;
459 }
460 }
461 if (EClass.rnd(25) == 0 && owner.IsInMutterDistance())
462 {
464 {
465 owner.PlayAnime(AnimeID.Shiver);
466 }
468 if (tC == null || tC.pop.items.Count == 0)
469 {
470 if (owner.noMove)
471 {
472 foreach (Thing thing9 in owner.pos.Things)
473 {
474 if (thing9.IsInstalled && thing9.trait is TraitGeneratorWheel)
475 {
476 owner.Talk("labor");
477 owner.PlayAnime(AnimeID.Shiver);
478 yield return Restart();
479 }
480 }
481 }
482 if (owner.isDrunk && (owner.race.id == "cat" || owner.id == "sailor"))
483 {
484 owner.Talk("drunk_cat");
485 }
486 else if (owner.isRestrained)
487 {
488 owner.Talk("restrained");
489 }
490 else if (owner.GetInt(106) == 0 && !owner.IsPCParty)
491 {
492 if (owner.HasElement(1232) && EClass.rnd(4) == 0)
493 {
494 owner.Talk("baby");
495 }
496 else if (EClass.rnd((owner.host == null) ? 2 : 10) == 0 && owner.isSynced && owner.TalkTopic().IsEmpty())
497 {
498 owner.Talk(owner.pos.IsHotSpring ? "hotspring" : "idle");
499 }
500 }
501 }
502 }
503 if (EClass.rnd(8) == 0 && owner.race.id == "chicken")
504 {
505 owner.PlaySound("Animal/Chicken/chicken");
506 }
507 if (EClass.rnd(80) == 0 && owner.race.id == "cat")
508 {
509 owner.PlaySound("Animal/Cat/cat");
510 }
511 if (owner.trait.IdAmbience != null && owner.IsInMutterDistance(15))
512 {
513 float mtp = 1f;
514 Room room2 = owner.Cell.room;
515 Room room3 = EClass.pc.Cell.room;
516 if (room2 != room3 && room3 != null)
517 {
518 mtp = ((room2?.lot != room3?.lot) ? 0.4f : 0.7f);
519 }
520 EClass.Sound.PlayAmbience(owner.trait.IdAmbience, owner.pos.Position(), mtp);
521 }
522 if (EClass.rnd(2000) == 0 && owner.IsHuman && (owner.host == null || owner.host.ride != owner))
523 {
524 Thing thing4 = owner.things.Find((Thing a) => !a.IsNegativeGift && a.trait.CanDrink(owner), recursive: false);
525 if (thing4 != null && thing4.trait is TraitPotion && owner.IsPCParty)
526 {
527 thing4 = null;
528 }
529 bool flag5 = EClass.Branch != null && EClass.Branch.policies.IsActive(2503);
530 if (owner.homeBranch != null && owner.homeBranch.policies.IsActive(2503))
531 {
532 flag5 = true;
533 }
534 if (thing4 == null && !flag5)
535 {
536 thing4 = ThingGen.Create("crimAle");
537 owner.Drink(thing4);
538 }
539 if (thing4 != null && !thing4.isDestroyed)
540 {
541 owner.TryUse(thing4);
542 yield return Restart();
543 }
544 }
545 if (EClass.rnd(owner.IsPCParty ? 1000 : 200) == 0 && owner.isDrunk && (owner.isSynced || EClass.rnd(5) == 0))
546 {
547 DoSomethingToCharaInRadius(3, null, delegate(Chara c)
548 {
549 owner.Say("drunk_mess", owner, c);
550 owner.Talk("drunk_mess");
551 bool flag6 = EClass.rnd(5) == 0 && !c.IsPC;
552 if (c.IsPCParty && owner.hostility >= Hostility.Friend)
553 {
554 flag6 = false;
555 }
556 if (flag6)
557 {
558 owner.Say("drunk_counter", c, owner);
559 c.Talk("drunk_counter");
561 }
562 });
563 }
564 if (EClass.rnd(100) == 0 && owner.trait.CanFish && owner.stamina.value > 0)
565 {
566 Point fishingPoint = AI_Fish.GetFishingPoint(owner.pos);
567 if (fishingPoint.IsValid)
568 {
569 yield return Do(new AI_Fish
570 {
571 pos = fishingPoint
572 });
573 }
574 }
575 string idAct = owner.source.actIdle.RandomItem();
576 if (EClass.rnd(EClass.world.date.IsNight ? 1500 : 15000) == 0 && !owner.IsPCFaction && !owner.noMove)
577 {
578 owner.AddCondition<ConSleep>(1000 + EClass.rnd(1000), force: true);
579 }
580 if (EClass.rnd((owner.host != null && owner.GetInt(106) != 0) ? 1000 : 40) == 0 && owner.IsHuman)
581 {
582 DoSomethingToNearChara((Chara c) => (!c.IsPCParty || EClass.rnd(5) == 0) && c.IsMofuable && !owner.IsHostile(c) && !c.IsInCombat, delegate(Chara c)
583 {
584 owner.Cuddle(c);
585 });
586 yield return KeepRunning();
587 }
588 if (EClass.rnd(100) == 0 && owner.trait is TraitBitch)
589 {
590 Chara chara2 = DoSomethingToNearChara((Chara c) => c.IsIdle && !c.IsPCParty && !(c.trait is TraitBitch) && c.Evalue(418) <= 0);
591 if (chara2 != null)
592 {
593 yield return Do(new AI_Fuck
594 {
595 target = chara2,
596 bitch = true
597 });
598 }
599 }
600 if (EClass.rnd(50) == 0 && owner.trait is TraitBard)
601 {
602 yield return Do(new AI_PlayMusic());
603 }
604 if (EClass.rnd(4) == 0 && TryPerformIdleUse())
605 {
606 yield return Restart();
607 }
608 if (EClass.rnd(20) == 0 && owner.trait.IdleAct())
609 {
610 yield return Restart();
611 }
612 if (idAct == "janitor" && EClass.rnd(5) == 0)
613 {
614 DoSomethingToCharaInRadius(4, null, delegate(Chara c)
615 {
616 if (c.HasElement(1211) && !(EClass._zone is Zone_Casino))
617 {
618 owner.Talk("snail");
619 Thing t4 = ThingGen.Create("1142");
620 ActThrow.Throw(owner, c.pos, t4);
621 }
622 });
623 yield return Restart();
624 }
626 {
627 TraitShackle traitShackle2 = owner.pos.FindThing<TraitShackle>();
628 if (traitShackle2 != null && traitShackle2.AllowTraining)
629 {
631 {
632 shackle = traitShackle2
633 });
634 yield return Restart();
635 }
636 }
637 if (!owner.IsPCFactionOrMinion && EClass.rnd(owner.isSynced ? 50 : 2000) == 0 && owner.hostility == Hostility.Neutral && EClass.pc.party.HasElement(1563) && !owner.race.tag.Contains("animal") && EClass._zone.IsTown && !EClass._zone.IsPCFaction && !owner.HasCondition<ConIncognito>())
638 {
640 }
641 if (EClass.rnd(200) == 0 && !owner.noMove)
642 {
643 Point cleanPoint = AI_Clean.GetCleanPoint(owner, 4);
644 if (cleanPoint != null)
645 {
646 yield return Do(new AI_Clean
647 {
648 pos = cleanPoint
649 });
650 }
651 }
652 if (EClass.rnd(35) == 0 && owner.id == "child" && owner.pos.cell.IsSnowTile)
653 {
654 foreach (Chara chara3 in EClass._map.charas)
655 {
656 if (EClass.rnd(3) != 0 && chara3 != owner && chara3.pos.cell.IsSnowTile && chara3.Dist(owner) <= 6 && Los.IsVisible(chara3, owner))
657 {
658 Thing t3 = ThingGen.Create("snow");
659 ActThrow.Throw(owner, chara3.pos, t3);
660 break;
661 }
662 }
663 }
664 if (EClass.rnd(EClass.debug.enable ? 3 : 30) == 0)
665 {
666 Thing thing5 = owner.things.Find<TraitBall>();
667 if (thing5 == null)
668 {
669 owner.pos.ForeachNeighbor(delegate(Point p)
670 {
671 Card card2 = p.FindThing<TraitBall>()?.owner;
672 if (card2 != null)
673 {
674 owner.Pick(card2.Thing);
675 }
676 });
677 }
678 else
679 {
680 foreach (Chara chara4 in EClass._map.charas)
681 {
682 if (EClass.rnd(3) != 0 && chara4 != owner && chara4.Dist(owner) <= 6 && chara4.Dist(owner) >= 3 && Los.IsVisible(chara4, owner))
683 {
684 ActThrow.Throw(owner, chara4.pos, thing5);
685 break;
686 }
687 }
688 }
689 }
690 if (EClass.rnd(20) == 0 && AI_Shopping.TryShop(owner, realtime: true))
691 {
692 yield return Restart();
693 }
694 if (EClass.rnd(20) == 0 && owner.IsPCFaction && AI_Shopping.TryRestock(owner, realtime: true))
695 {
696 yield return Restart();
697 }
699 if (owner.idleActTimer <= 0 && !owner.source.actIdle.IsEmpty())
700 {
701 owner.idleActTimer = 10 + EClass.rnd(50);
702 switch (idAct)
703 {
704 case "torture_snail":
705 DoSomethingToNearChara((Chara c) => c.race.id == "snail", delegate(Chara c)
706 {
707 owner.Say("use_whip3", owner, c);
708 owner.PlaySound("whip");
709 owner.Talk("insult");
710 c.PlayAnime(AnimeID.Shiver);
711 c.OnInsulted();
712 });
713 break;
714 case "buffMage":
715 if (EClass.rnd(2) == 0)
716 {
717 TryCast<ConHolyVeil>(EffectId.HolyVeil, 300 + EClass.rnd(300));
718 }
719 else
720 {
721 TryCast<ConLevitate>(EffectId.Levitate, 300 + EClass.rnd(300));
722 }
723 break;
724 case "buffThief":
725 TryCast<ConNightVision>(EffectId.CatsEye, 100 + EClass.rnd(100));
726 break;
727 case "buffGuildWatch":
728 TryCast<ConGravity>(EffectId.Gravity, 300 + EClass.rnd(300));
729 break;
730 case "buffHealer":
731 TryCast(EffectId.Heal);
732 break;
733 case "readBook":
734 {
735 if (EClass.rnd(2) == 0 || (owner.IsPCParty && EClass.rnd(20) != 0))
736 {
737 break;
738 }
739 List<Thing> list3 = owner.things.List((Thing a) => a.parent == owner && (a.category.id == "spellbook" || a.category.id == "ancientbook" || a.category.id == "skillbook"), onlyAccessible: true);
740 Thing thing6 = null;
741 if (list3.Count > 0)
742 {
743 thing6 = list3.RandomItem();
744 if (!thing6.trait.CanRead(owner))
745 {
746 thing6 = null;
747 }
748 }
749 if (thing6 == null)
750 {
751 if (owner.things.IsFull())
752 {
753 break;
754 }
755 thing6 = ThingGen.CreateFromCategory((EClass.rnd(5) != 0) ? "spellbook" : "ancientbook");
756 thing6.isNPCProperty = true;
757 }
758 if (!(thing6.id == "1084") || !owner.IsPCFaction)
759 {
760 if (!owner.HasElement(285))
761 {
762 owner.elements.ModBase(285, 1);
763 }
764 yield return Do(new AI_Read
765 {
766 target = thing6
767 });
768 }
769 break;
770 }
771 default:
772 if (LangGame.Has("idle_" + idAct))
773 {
774 IdleActText(idAct);
775 }
776 break;
777 }
778 yield return Restart();
779 }
780 if (owner.host != null)
781 {
782 yield return Restart();
783 }
785 {
787 {
788 yield return DoGoto(owner.orgPos);
789 }
790 yield return Restart();
791 }
793 {
794 yield return DoGoto(EClass.pc);
795 }
796 if (EClass.rnd(100) == 0 && !owner.IsPCFaction)
797 {
798 if (owner.id == "ashland" || owner.id == "fiama")
799 {
801 if (card != null)
802 {
803 yield return DoGotoSpot(card);
804 }
805 else
806 {
807 Room room4 = owner.FindRoom();
808 if (room4 != null)
809 {
810 yield return DoGoto(room4.GetRandomPoint().GetNearestPoint());
811 }
812 }
813 }
815 {
816 yield return DoGoto(owner.orgPos, 0, ignoreConnection: false, delegate
817 {
818 if (!EClass._zone.IsPCFaction)
819 {
820 owner.Teleport(owner.orgPos, silent: false, force: true);
821 }
822 return Status.Success;
823 });
824 }
825 }
826 if (EClass.rnd(100) == 0 && owner.id == "bee")
827 {
828 Thing thing7 = EClass._map.ListThing<TraitBeekeep>()?.RandomItem();
829 if (thing7 != null)
830 {
831 yield return DoGoto(thing7.pos);
832 }
833 }
834 if (EClass.rnd(10) == 0 && !EClass._zone.IsUnderwater && (owner.race.tag.Contains("water") || owner.source.tag.Contains("water")) && !owner.pos.IsDeepWater)
835 {
836 for (int j = 0; j < 100; j++)
837 {
838 Point randomPoint = EClass._map.GetRandomPoint();
839 if (randomPoint.IsDeepWater && !randomPoint.IsBlocked)
840 {
841 yield return DoGoto(randomPoint);
842 break;
843 }
844 }
845 }
846 string aiIdle = owner.source.aiIdle;
847 if (!(aiIdle == "stand") && !(aiIdle == "root"))
848 {
849 if (EClass.rnd(15) == 0)
850 {
852 }
853 if (owner == null)
854 {
855 yield return Cancel();
856 }
857 }
858 if (EClass._zone.IsPCFaction && owner.IsPCFaction && !owner.IsPCParty && (owner.GetWork("Clean") != null || owner.GetWork("Chore") != null) && !(EClass.pc.ai is AI_UseCrafter))
859 {
860 AI_Haul aI_Haul = AI_Haul.TryGetAI(owner);
861 if (aI_Haul != null)
862 {
863 yield return Do(aI_Haul);
864 }
865 }
866 yield return Restart();
867 Point FindMovePoint(BaseArea.AccessType type)
868 {
869 for (int k = 0; k < 20; k++)
870 {
871 Point randomPoint2 = owner.pos.GetRandomPoint(5 + k, requireLos: false);
872 if (randomPoint2 != null && randomPoint2.IsInBounds && (randomPoint2.cell.room == null || randomPoint2.cell.room.data.accessType == type))
873 {
874 return randomPoint2;
875 }
876 }
877 return null;
878 }
879 }
880
881 public void IdleActText(string id)
882 {
883 string text = "idle_" + id;
884 owner.PlaySound(text);
885 if (Lang.Game.map.ContainsKey(text))
886 {
887 owner.Say(text, owner);
888 }
889 }
890
891 public void TryCast<T>(EffectId id, int power = 100) where T : Condition
892 {
893 if (!owner.HasCondition<T>())
894 {
895 TryCast(id, power);
896 }
897 }
898
899 public void TryCast(EffectId id, int power = 100)
900 {
901 owner.Say("idle_cast", owner);
902 ActEffect.Proc(id, power, BlessedState.Normal, owner);
903 }
904
906 {
907 _listRoom.Clear();
908 foreach (BaseArea item in ((IEnumerable<BaseArea>)EClass._map.rooms.listRoom).Concat((IEnumerable<BaseArea>)EClass._map.rooms.listArea))
909 {
910 if (item.type != null && item.type.uidCharas.Contains(owner.uid))
911 {
912 _listRoom.Add(item);
913 }
914 }
915 return _listRoom.RandomItem();
916 }
917
918 public Chara DoSomethingToNearChara(Func<Chara, bool> funcPickChara, Action<Chara> action = null)
919 {
920 List<Chara> list = owner.pos.ListCharasInNeighbor(delegate(Chara c)
921 {
922 if (c == owner || !owner.CanSee(c))
923 {
924 return false;
925 }
926 return funcPickChara == null || funcPickChara(c);
927 });
928 if (list.Count > 0)
929 {
930 Chara chara = list.RandomItem();
931 action?.Invoke(chara);
932 return chara;
933 }
934 return null;
935 }
936
937 public Chara DoSomethingToCharaInRadius(int radius, Func<Chara, bool> funcPickChara, Action<Chara> action = null)
938 {
939 List<Chara> list = owner.pos.ListCharasInRadius(owner, radius, delegate(Chara c)
940 {
941 if (c == owner || !owner.CanSee(c))
942 {
943 return false;
944 }
945 return funcPickChara == null || funcPickChara(c);
946 });
947 if (list.Count > 0)
948 {
949 Chara chara = list.RandomItem();
950 action?.Invoke(chara);
951 return chara;
952 }
953 return null;
954 }
955
956 public bool TryPerformIdleUse()
957 {
958 for (int i = 0; i < 10; i++)
959 {
960 Point randomPoint = owner.pos.GetRandomPoint(7, requireLos: true, allowChara: true, allowBlocked: true);
961 if (randomPoint == null || randomPoint.detail == null)
962 {
963 continue;
964 }
965 foreach (Thing thing in randomPoint.detail.things)
966 {
967 if (thing.IsInstalled)
968 {
969 int num = owner.Dist(thing);
970 if (EClass.rnd((owner.memberType == FactionMemberType.Guest) ? 5 : 50) == 0 && thing.HasTag(CTAG.tourism) && num <= 2)
971 {
972 owner.LookAt(thing);
973 owner.Talk("nice_statue");
974 return true;
975 }
976 if (EClass.rnd(thing.trait.IdleUseChance) == 0 && thing.trait.IdleUse(owner, num))
977 {
978 owner.LookAt(thing);
979 return true;
980 }
981 }
982 }
983 }
984 return false;
985 }
986}
AnimeID
Definition: AnimeID.cs:2
AttackSource
Definition: AttackSource.cs:2
BlessedState
Definition: BlessedState.cs:2
CTAG
Definition: CTAG.cs:2
ClearInventoryType
EditorTag
Definition: EditorTag.cs:2
EffectId
Definition: EffectId.cs:2
FactionMemberType
Hostility
Definition: Hostility.cs:2
MinionType
Definition: MinionType.cs:2
ThrowMethod
Definition: ThrowMethod.cs:2
if(item3.idFile==idFirstFile &&item3.id==idFirstTopic)
Definition: UIBook.cs:627
Definition: AIAct.cs:6
Status Do(AIAct _seq, Func< Status > _onChildFail=null)
Definition: AIAct.cs:416
virtual Status Cancel()
Definition: AIAct.cs:291
new Chara owner
Definition: AIAct.cs:14
Status
Definition: AIAct.cs:8
Status DoGotoSpot(Card card, Func< Status > _onChildFail=null)
Definition: AIAct.cs:461
Status DoGoto(Point pos, int dist=0, bool ignoreConnection=false, Func< Status > _onChildFail=null)
Definition: AIAct.cs:432
Status KeepRunning()
Definition: AIAct.cs:321
Status Restart()
Definition: AIAct.cs:237
static Point GetCleanPoint(Chara c, int r=-1, int tries=10)
Definition: AI_Clean.cs:9
Definition: AI_Eat.cs:5
static Point GetFishingPoint(Point p)
Definition: AI_Fish.cs:272
static AI_Haul TryGetAI(Chara c)
Definition: AI_Haul.cs:76
Chara DoSomethingToNearChara(Func< Chara, bool > funcPickChara, Action< Chara > action=null)
Definition: AI_Idle.cs:918
BaseArea GetRandomAssignedRoom()
Definition: AI_Idle.cs:905
int moveFailCount
Definition: AI_Idle.cs:16
static List< BaseArea > _listRoom
Definition: AI_Idle.cs:18
override IEnumerable< Status > Run()
Definition: AI_Idle.cs:32
override bool IsIdle
Definition: AI_Idle.cs:20
override bool InformCancel
Definition: AI_Idle.cs:22
Chara DoSomethingToCharaInRadius(int radius, Func< Chara, bool > funcPickChara, Action< Chara > action=null)
Definition: AI_Idle.cs:937
int maxRepeat
Definition: AI_Idle.cs:14
override int MaxRestart
Definition: AI_Idle.cs:24
void IdleActText(string id)
Definition: AI_Idle.cs:881
bool TryPerformIdleUse()
Definition: AI_Idle.cs:956
override void OnStart()
Definition: AI_Idle.cs:26
void TryCast(EffectId id, int power=100)
Definition: AI_Idle.cs:899
Behaviour
Definition: AI_Idle.cs:9
static bool TryRestock(Chara c, bool realtime)
Definition: AI_Shopping.cs:94
static bool TryShop(Chara c, bool realtime)
Definition: AI_Shopping.cs:10
static void Proc(EffectId id, Card cc, Card tc=null, int power=100, ActRef actRef=default(ActRef))
Definition: ActEffect.cs:901
List< Item > items
Definition: ActList.cs:14
static EffectIRenderer Throw(Card c, Point p, Thing t, ThrowMethod method=ThrowMethod.Default, float failChance=0f)
Definition: ActThrow.cs:93
Definition: ACT.cs:62
BaseArea.AccessType accessType
Definition: AreaData.cs:42
AccessType
Definition: BaseArea.cs:9
AreaData data
Definition: BaseArea.cs:29
virtual Point GetRandomPoint(bool walkable=true, bool allowChara=true)
Definition: BaseArea.cs:88
int GetInt(int id, int? defaultInt=null)
Definition: BaseCard.cs:25
void SetInt(int id, int value=0)
Definition: BaseCard.cs:39
GlobalCharaList globalCharas
Definition: CardManager.cs:46
TC GetTC(string id)
Definition: Card.cs:11
bool isDestroyed
Definition: Card.cs:73
bool IsPCFactionOrMinion
Definition: Card.cs:2234
void Teleport(Point point, bool silent=false, bool force=false)
Definition: Card.cs:5577
ElementContainerCard elements
Definition: Card.cs:39
string id
Definition: Card.cs:33
bool IsRestrainedResident
Definition: Card.cs:2220
void DamageHP(int dmg, AttackSource attackSource=AttackSource.None, Card origin=null)
Definition: Card.cs:3955
bool HasElement(int ele, int req=1)
Definition: Card.cs:5638
bool isRestrained
Definition: Card.cs:552
CardRenderer HostRenderer
Definition: Card.cs:2404
SoundSource PlaySound(string id, float v=1f, bool spatial=true)
Definition: Card.cs:5852
int c_uidMaster
Definition: Card.cs:1423
Thing AddThing(string id, int lv=-1)
Definition: Card.cs:3057
void Talk(string idTopic, string ref1=null, string ref2=null, bool forceSync=false)
Definition: Card.cs:6402
int hp
Definition: Card.cs:228
ICardParent parent
Definition: Card.cs:53
bool ExistsOnMap
Definition: Card.cs:2047
int GetCurrency(string id="money")
Definition: Card.cs:3867
bool HasTag(CTAG tag)
Definition: Card.cs:2557
Point pos
Definition: Card.cs:57
bool IsInMutterDistance(int d=10)
Definition: Card.cs:7359
void ShowEmo(Emo _emo=Emo.none, float duration=0f, bool skipSame=true)
Definition: Card.cs:5820
Trait trait
Definition: Card.cs:51
void ModCurrency(int a, string id="money")
Definition: Card.cs:3853
int encLV
Definition: Card.cs:312
bool IsEquipment
Definition: Card.cs:2135
void ModEncLv(int a)
Definition: Card.cs:3738
bool c_isImportant
Definition: Card.cs:998
MoveResult
Definition: Card.cs:13
bool noMove
Definition: Card.cs:756
bool HasEditorTag(EditorTag tag)
Definition: Card.cs:2562
ThingContainer things
Definition: Card.cs:36
bool IsInstalled
Definition: Card.cs:2343
virtual Thing Thing
Definition: Card.cs:2020
int Evalue(int ele)
Definition: Card.cs:2533
int Dist(Card c)
Definition: Card.cs:7315
bool isGifted
Definition: Card.cs:768
Cell Cell
Definition: Card.cs:2017
int Num
Definition: Card.cs:156
void PlayAnime(AnimeID id, bool force=false)
Definition: Card.cs:5871
SourceCategory.Row category
Definition: Card.cs:2011
void ModNum(int a, bool notify=true)
Definition: Card.cs:3413
void Say(string lang, string ref1=null, string ref2=null)
Definition: Card.cs:6499
List< Thing > things
Definition: CellDetail.cs:11
Room room
Definition: Cell.cs:102
bool IsSnowTile
Definition: Cell.cs:782
bool IsTopWaterAndNoSnow
Definition: Cell.cs:712
bool HasFire
Definition: Cell.cs:676
ActList list
Definition: CharaAbility.cs:12
bool Has(int id)
Definition: Chara.cs:10
void OnInsulted()
Definition: Chara.cs:7757
bool UseAbility(string idAct, Card tc=null, Point pos=null, bool pt=false)
Definition: Chara.cs:5506
override bool IsAliveInCurrentZone
Definition: Chara.cs:559
Thing FindBestFoodToEat()
Definition: Chara.cs:7180
new TraitChara trait
Definition: Chara.cs:501
Card held
Definition: Chara.cs:70
AIAct ai
Definition: Chara.cs:200
bool TryUse(Thing t)
Definition: Chara.cs:7474
void Cuddle(Chara c, bool headpat=false)
Definition: Chara.cs:5928
int sharedCheckTurn
Definition: Chara.cs:118
void InstantEat(Thing t=null, bool sound=true)
Definition: Chara.cs:7201
Condition AddCondition(string id, int p=100, bool force=false)
Definition: Chara.cs:8769
Faction faction
Definition: Chara.cs:425
override bool IsPC
Definition: Chara.cs:610
bool isDrunk
Definition: Chara.cs:124
Chara host
Definition: Chara.cs:33
Chara GetNearbyCatToSniff()
Definition: Chara.cs:7668
bool CanSeeLos(Card c, int dist=-1)
Definition: Chara.cs:1232
bool IsMofuable
Definition: Chara.cs:1081
override bool IsPCParty
Definition: Chara.cs:613
Party party
Definition: Chara.cs:43
bool IsInCombat
Definition: Chara.cs:862
TraitBed TryAssignBed()
Definition: Chara.cs:6981
void PickHeld(bool msg=false)
Definition: Chara.cs:4384
bool HasCondition(string alias)
Definition: Chara.cs:8926
AIAct SetAI(AIAct g)
Definition: Chara.cs:8399
bool IsIdle
Definition: Chara.cs:851
TraitBed FindBed()
Definition: Chara.cs:6969
Stats hunger
Definition: Chara.cs:1124
override bool isSynced
Definition: Chara.cs:689
Point orgPos
Definition: Chara.cs:21
bool IsHuman
Definition: Chara.cs:877
bool MoveRandom()
Definition: Chara.cs:2503
void TryPutSharedItems(IEnumerable< Thing > containers, bool msg=true)
Definition: Chara.cs:6999
override bool IsPCFaction
Definition: Chara.cs:669
bool CanSee(Card c)
Definition: Chara.cs:1200
bool HasAccess(Card c)
Definition: Chara.cs:1262
bool CanEat(Thing t, bool shouldEat=false)
Definition: Chara.cs:7226
override int MaxHP
Definition: Chara.cs:706
void ClearInventory(ClearInventoryType type)
Definition: Chara.cs:8122
SourceChara.Row source
Definition: Chara.cs:156
Stats mana
Definition: Chara.cs:1136
FactionMemberType memberType
Definition: Chara.cs:46
string TalkTopic(string topic="calm")
Definition: Chara.cs:6620
Stats stamina
Definition: Chara.cs:1128
bool MoveNeighborDefinitely()
Definition: Chara.cs:2517
void SetTempHand(int right=0, int left=0)
Definition: Chara.cs:6366
Chara parasite
Definition: Chara.cs:30
Chara master
Definition: Chara.cs:88
bool IsGuest()
Definition: Chara.cs:6276
Hobby GetWork(string id)
Definition: Chara.cs:8510
Thing nextUse
Definition: Chara.cs:100
MoveResult TryMoveTowards(Point p)
Definition: Chara.cs:2543
Chara enemy
Definition: Chara.cs:86
CharaAbility ability
Definition: Chara.cs:422
Chara FindMaster()
Definition: Chara.cs:2312
Chara SetEnemy(Chara c=null)
Definition: Chara.cs:5967
void DoHostileAction(Card _tg, bool immediate=false)
Definition: Chara.cs:6016
Room FindRoom()
Definition: Chara.cs:7530
Point GetDestination()
Definition: Chara.cs:6888
int turnLastSeen
Definition: Chara.cs:110
FactionBranch homeBranch
Definition: Chara.cs:1052
void Drink(Card t)
Definition: Chara.cs:4866
Hostility hostility
Definition: Chara.cs:289
bool IsHostile()
Definition: Chara.cs:6193
void TryTakeSharedItems(bool msg=true)
Definition: Chara.cs:7037
PCCData pccData
Definition: Chara.cs:67
Thing Pick(Thing t, bool msg=true, bool tryStack=true)
Definition: Chara.cs:4168
void Sniff(Chara c)
Definition: Chara.cs:7680
override bool IsPCC
Definition: Chara.cs:680
int idleActTimer
Definition: Chara.cs:112
SourceRace.Row race
Definition: Chara.cs:462
Definition: ConHOT.cs:4
int AllyDistance(Chara c)
bool enable
Definition: CoreDebug.cs:285
int GetRaw(int offsetHours=0)
Definition: Date.cs:322
bool IsNight
Definition: Date.cs:112
Definition: EClass.cs:5
static Game game
Definition: EClass.cs:8
static Zone _zone
Definition: EClass.cs:20
static World world
Definition: EClass.cs:40
static Map _map
Definition: EClass.cs:18
static int rnd(long a)
Definition: EClass.cs:58
static FactionBranch Branch
Definition: EClass.cs:22
static int rndHalf(int a)
Definition: EClass.cs:87
static Player player
Definition: EClass.cs:12
static Chara pc
Definition: EClass.cs:14
static CoreDebug debug
Definition: EClass.cs:48
static SoundManager Sound
Definition: EClass.cs:46
Dictionary< int, Element > dict
Element ModTempPotential(int ele, int v, int threshMsg=0)
Element ModBase(int ele, int v)
int ValueWithoutLink
Definition: ELEMENT.cs:292
int id
Definition: ELEMENT.cs:248
SourceElement.Row source
Definition: ELEMENT.cs:271
int vTempPotential
Definition: ELEMENT.cs:256
Act act
Definition: ELEMENT.cs:392
Thing GetMeal(Chara c)
List< Chara > members
PolicyManager policies
ConfigTactics tactics
Definition: Game.cs:90
CardManager cards
Definition: Game.cs:155
Config config
Definition: Game.cs:215
static bool Has(string id)
Definition: LangGame.cs:46
Definition: Lang.cs:6
static LangGame Game
Definition: Lang.cs:48
static string _currency(object a, string IDCurrency)
Definition: Lang.cs:162
Definition: Los.cs:5
static bool IsVisible(Point p1, Point p2, Action< Point, bool > _onVisit=null)
Definition: Los.cs:167
Point GetRandomPoint(Point center, int radius, int tries=100, bool mustBeWalkable=true, bool requireLos=true)
Definition: Map.cs:2202
PropsInstalled Installed
Definition: Map.cs:123
PropsManager props
Definition: Map.cs:91
RoomManager rooms
Definition: Map.cs:31
List< Chara > charas
Definition: Map.cs:81
Definition: Msg.cs:5
static string Say(string idLang, string ref1, string ref2=null, string ref3=null, string ref4=null)
Definition: Msg.cs:58
Definition: Party.cs:6
Chara leader
Definition: Party.cs:30
bool HasElement(int ele)
Definition: Party.cs:168
List< Chara > members
Definition: Party.cs:18
int turns
Definition: Player.cs:84
int karma
Definition: Player.cs:801
Stats stats
Definition: Player.cs:936
Definition: Point.cs:9
ref Vector3 Position(int height)
Definition: Point.cs:536
void ForeachNeighbor(Action< Point > action, bool diagonal=true)
Definition: Point.cs:1377
CellDetail detail
Definition: Point.cs:71
bool IsBlocked
Definition: Point.cs:351
List< Thing > Things
Definition: Point.cs:326
List< Chara > ListCharasInNeighbor(Func< Chara, bool > func)
Definition: Point.cs:1180
List< Chara > ListCharasInRadius(Chara cc, int dist, Func< Chara, bool > func, bool onlyVisible=true)
Definition: Point.cs:1200
bool Equals(int _x, int _z)
Definition: Point.cs:940
bool IsValid
Definition: Point.cs:88
int Distance(Point p)
Definition: Point.cs:969
bool IsInBounds
Definition: Point.cs:104
Cell cell
Definition: Point.cs:51
Thing FindThing(Func< Thing, bool > func)
Definition: Point.cs:1120
Point GetNearestPoint(bool allowBlock=false, bool allowChara=true, bool allowInstalled=true, bool ignoreCenter=false)
Definition: Point.cs:607
bool HasChara
Definition: Point.cs:226
bool IsHotSpring
Definition: Point.cs:363
bool IsDeepWater
Definition: Point.cs:264
Point GetRandomPoint(int radius, bool requireLos=true, bool allowChara=true, bool allowBlocked=false, int tries=100)
Definition: Point.cs:753
bool IsActive(int id, int days=-1)
List< PopItem > items
Definition: PopManager.cs:34
PropsInstalled installed
Definition: PropsManager.cs:8
TraitManager traits
Definition: Props.cs:18
Thing Find(int uid)
Definition: Props.cs:389
List< Room > listRoom
Definition: RoomManager.cs:13
List< Area > listArea
Definition: RoomManager.cs:10
Definition: Room.cs:4
Lot lot
Definition: Room.cs:21
virtual bool IsRegion
Definition: Spatial.cs:501
virtual void Mod(int a)
Definition: Stats.cs:135
override int GetPhase()
Definition: Stats.cs:117
virtual int value
Definition: Stats.cs:56
virtual int max
Definition: Stats.cs:68
Definition: TCText.cs:6
PopManager pop
Definition: TCText.cs:9
List< Thing > List(Func< Thing, bool > func, bool onlyAccessible=false)
Thing Find(int uid)
bool IsFull(int y=0)
static Thing CreateFromCategory(string idCat, int lv=-1)
Definition: ThingGen.cs:75
static Thing Create(string id, int idMat=-1, int lv=-1)
Definition: ThingGen.cs:53
Definition: Thing.cs:8
bool IsSharedContainer
Definition: Thing.cs:112
virtual AI_Idle.Behaviour IdleBehaviour
Definition: TraitChara.cs:17
virtual string IdAmbience
Definition: TraitChara.cs:137
virtual bool CanFish
Definition: TraitChara.cs:139
virtual bool IdleAct()
Definition: TraitChara.cs:141
TraitMap restSpots
Definition: TraitManager.cs:10
virtual bool AllowTraining
Definition: TraitShackle.cs:13
virtual bool CanRead(Chara c)
Definition: Trait.cs:960
virtual bool CanEat(Chara c)
Definition: Trait.cs:969
virtual int IdleUseChance
Definition: Trait.cs:360
virtual bool IdleUse(Chara c, int dist)
Definition: Trait.cs:638
virtual bool CanDrink(Chara c)
Definition: Trait.cs:978
GameDate date
Definition: World.cs:6
Definition: Zone.cs:12
static int okaerinko
Definition: Zone.cs:31
virtual bool IsNefia
Definition: Zone.cs:280
FactionBranch branch
Definition: Zone.cs:34
Chara Boss
Definition: Zone.cs:83
virtual bool IsTown
Definition: Zone.cs:220
virtual bool PetFollow
Definition: Zone.cs:282
bool IsPCFaction
Definition: Zone.cs:466
virtual bool IsUnderwater
Definition: Zone.cs:264