Skip to content

Commit

Permalink
Minor format update
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercamp committed Jul 6, 2024
1 parent 04f31cb commit 0d7ba7b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ScrapeData/fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ async function fetchPassives() {

fs.writeFileSync('out/csv/pals.csv', [
palColumns.join(','),
...resultPals.map(p => palColumns.map(c => p[c]).map(v => typeof v == 'object' ? `'${JSON.stringify(v)}'` : v).join(','))
...resultPals.map(p => palColumns.map(c => p[c]).join(','))
].join('\n'))

fs.writeFileSync('out/csv/unique_breeding.csv', [
Expand Down
18 changes: 9 additions & 9 deletions ScrapeData/out/csv/pals.csv
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Verdash,GrassRabbitMan,77,false,990,50,2200,106,35,53
Vaelet,VioletFairy,78,false,1050,50,1960,92,18,38
Sibelyx,WhiteMoth,79,false,450,50,5900,80,36,45
Elphidran,FairyDragon,80,false,540,50,5230,38,18,45
Elphidran Aqua,FairyDragon_Water,80,true,530,50,5320,39,'null','null'
Elphidran Aqua,FairyDragon_Water,80,true,530,50,5320,39,,
Kelpsea,Kelpie,81,false,1260,50,1260,86,9,19
Kelpsea Ignis,Kelpie_Fire,81,true,1270,50,1240,87,9,38
Azurobe,BlueDragon,82,false,500,50,5600,46,17,22
Expand All @@ -123,7 +123,7 @@ Felbat,CatVampire,94,false,1010,50,2100,71,20,29
Quivern,SkyDragon,95,false,350,50,6830,128,23,52
Quivern Botan,SkyDragon_Grass,95,true,340,50,7830,129,51,54
Blazamut,KingBahamut,96,false,10,50,10520,75,40,49
Blazamut Ryu,KingBahamut_Dragon,96,true,9,50,10520,76,'null','null'
Blazamut Ryu,KingBahamut_Dragon,96,true,9,50,10520,76,,
Helzephyr,HadesBird,97,false,190,50,7840,130,24,28
Helzephyr Lux,HadesBird_Electric,97,true,180,50,8840,131,46,52
Astegon,BlackMetalDragon,98,false,150,50,8200,105,40,48
Expand All @@ -143,11 +143,11 @@ Shadowbeak,BlackGriffon,107,false,60,50,9060,79,40,45
Paladius,SaintCentaur,108,false,80,50,8810,123,55,55
Necromus,BlackCentaur,109,false,70,50,8930,136,55,55
Frostallion,IceHorse,110,false,120,50,8440,67,55,55
Frostallion Noct,IceHorse_Dark,110,true,100,50,8560,68,'null','null'
Frostallion Noct,IceHorse_Dark,110,true,100,50,8560,68,,
Jetragon,JetDragon,111,false,90,50,8680,108,55,55
Bellanoir,NightLady,112,false,1,5,10030,147,'null','null'
Bellanoir Libero,NightLady_Dark,112,true,1,5,10030,148,'null','null'
Selyne,MoonQueen,113,false,345,20,9500,149,'null','null'
Bellanoir,NightLady,112,false,1,5,10030,147,,
Bellanoir Libero,NightLady_Dark,112,true,1,5,10030,148,,
Selyne,MoonQueen,113,false,345,20,9500,149,,
Croajiro,KendoFrog,114,false,795,50,2040,150,3,49
Lullu,LeafPrincess,115,false,905,30,3420,151,40,49
Shroomer,MushroomDragon,116,false,720,55,3660,152,40,49
Expand All @@ -160,7 +160,7 @@ Yakumo,GuardianDog,121,false,945,50,3360,158,40,49
Dogen,SifuDog,122,false,665,50,4440,159,50,53
Dazemu,FeatherOstrich,123,false,675,50,2610,160,18,49
Mimog,MimicDog,124,false,1200,80,6150,161,9,53
Xenovader,DarkAlien,125,false,465,50,6750,162,'null','null'
Xenogard,WhiteAlienDragon,126,false,435,50,8810,163,'null','null'
Xenovader,DarkAlien,125,false,465,50,6750,162,,
Xenogard,WhiteAlienDragon,126,false,435,50,8810,163,,
Gumoss (Special),PlantSlime_Flower,13,true,1240,50,1310,115,2,14
Warsect Terra,HerculesBeetle_Ground,92,true,350,85,7830,-1,'null','null'
Warsect Terra,HerculesBeetle_Ground,92,true,350,85,7830,-1,,

0 comments on commit 0d7ba7b

Please sign in to comment.