1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Add B/W encounter methods and conditions

Spots: it might seem like they should be conditions, but in practice
they behave more like methods. Specifically, conditions typically make
only minor changes to an encounter list. Spots change everything.
So spots are added as methods, with each type of spot as a separate
method. Not exactly ideal, but this causes the least fuss.

Seasons work fine as conditions.

Well, as well as time-of-day.
This commit is contained in:
Andrew Ekstedt 2011-12-06 20:26:31 -08:00
parent c5fee20ef1
commit ca5b7a9cbf
7 changed files with 32 additions and 8 deletions

View file

@ -15,3 +15,7 @@ encounter_condition_value_id,local_language_id,name
14,9,Radio off
15,9,Hoenn radio
16,9,Sinnoh radio
17,9,During Spring
18,9,During Summer
19,9,During Autumn
20,9,During Winter

1 encounter_condition_value_id local_language_id name
15 14 9 Radio off
16 15 9 Hoenn radio
17 16 9 Sinnoh radio
18 17 9 During Spring
19 18 9 During Summer
20 19 9 During Autumn
21 20 9 During Winter