Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions data/v2/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2102,8 +2102,13 @@ def csv_record_to_objects(info):
trade_species_id=int(info[17]) if info[17] != "" else None,
needs_overworld_rain=bool(int(info[18])),
turn_upside_down=bool(int(info[19])),
region_id=int(info[20]) if info[20] != "" else None,
base_form_id=int(info[21]) if info[21] != "" else None,
needs_multiplayer=bool(int(info[20])),
region_id=int(info[21]) if info[21] != "" else None,
base_form_id=int(info[22]) if info[22] != "" else None,
used_move_id=int(info[23]) if info[23] != "" else None,
min_move_count=int(info[24]) if info[24] != "" else None,
min_steps=int(info[25]) if info[25] != "" else None,
min_damage_taken=int(info[26]) if info[26] != "" else None,
)

build_generic((PokemonEvolution,), "pokemon_evolution.csv", csv_record_to_objects)
Expand Down
3 changes: 3 additions & 0 deletions data/v2/csv/evolution_trigger_prose.csv
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ evolution_trigger_id,local_language_id,name
8,9,Land three critical hits in a battle
9,9,Go somewhere after taking damage
10,9,Other
14,9,Use move
15,9,Defeat three Bisharp that hold a Leader's Crest
16,9,Collect 999 Gimmighoul Coins
3 changes: 3 additions & 0 deletions data/v2/csv/evolution_triggers.csv
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ id,identifier
11,agile-style-move
12,strong-style-move
13,recoil-damage
14,use-move
15,three-defeated-bisharp
16,gimmmighoul-coins
Loading
Loading