Skip to content

Commit

Permalink
Move Cyndaquil and Hippopotas to Oblivious
Browse files Browse the repository at this point in the history
These Pokemon can be scared, but the game only spawns 1 that runs and 3
that attack. Clearing one loads another with the same behavior. I
haven't seen evidence that it's possible to have two scared at once.
  • Loading branch information
Lusamine committed May 30, 2022
1 parent 814c8e6 commit d1a18c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PermuteMMO.Lib/Util/BehaviorUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ public static class BehaviorUtil
{
public static readonly HashSet<ushort> Oblivious = new()
{
(ushort)Cyndaquil, // Cyndaquil and Hippopotas can be scared, but the game seems to only
(ushort)Hippopotas, // ever spawn 1 that will run away and 3 that attack you instead.
(ushort)Lickilicky,
(ushort)Lickitung,
(ushort)Magikarp,
Expand All @@ -31,15 +33,13 @@ public static class BehaviorUtil
(ushort)Clefairy,
(ushort)Cleffa,
(ushort)Combee,
(ushort)Cyndaquil,
(ushort)Eevee,
(ushort)Finneon,
(ushort)Froslass,
(ushort)Gardevoir,
(ushort)Glameow,
(ushort)Goomy,
(ushort)Happiny,
(ushort)Hippopotas,
(ushort)Kirlia,
(ushort)Kricketot,
(ushort)Kricketune,
Expand Down

0 comments on commit d1a18c6

Please sign in to comment.