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 @@ id,encounter_condition_id,identifier,is_default
14,5,radio-off,1
15,5,radio-hoenn,0
16,5,radio-sinnoh,0
17,6,season-spring,0
18,6,season-summer,0
19,6,season-autumn,0
20,6,season-winter,0

1 id encounter_condition_id identifier is_default
15 14 5 radio-off 1
16 15 5 radio-hoenn 0
17 16 5 radio-sinnoh 0
18 17 6 season-spring 0
19 18 6 season-summer 0
20 19 6 season-autumn 0
21 20 6 season-winter 0