Converted elemental_db to YAML (#6102)

* Converts the Elemental Summons Tables file into YAML.
* Includes CSV2YAML converter.

Thanks to @Lemongrass3110, @aleos89, @secretdataz !
This commit is contained in:
Atemo
2021-11-26 00:53:35 +01:00
committed by GitHub
parent ae1135dd2b
commit a205287307
26 changed files with 1067 additions and 383 deletions

View File

@@ -2249,7 +2249,7 @@ struct pet_data* map_id2pd(int id){
return BL_CAST(BL_PET, bl);
}
struct elemental_data* map_id2ed(int id) {
struct s_elemental_data* map_id2ed(int id) {
struct block_list* bl = map_id2bl(id);
return BL_CAST(BL_ELEM, bl);
}