Skip to content

Commit

Permalink
AUR-9360: Add Pumpkin Egg and Hollowoo Neftie
Browse files Browse the repository at this point in the history
  • Loading branch information
wndell committed Oct 3, 2024
1 parent 1957198 commit d308bd5
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aurory/dnajs",
"version": "1.0.0",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/Aurory-Game/dna.git"
Expand Down
1 change: 1 addition & 0 deletions ts/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const TACTICS_ADV_NAMES_MAP = {
Nefty_Whiskube: 'id_whiskube',
Nefty_Walpuff: 'id_walpuff',
Nefty_Dinotusk: 'id_dinotusk',
Nefty_Hollowoo: 'id_hollowoo',
} as const;

export const VERSION_LENGTH = 4;
Expand Down
5 changes: 5 additions & 0 deletions ts/src/deps/eggs_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,10 @@
"name": "Mirage Egg",
"description": "This precious egg presents a challenge to find as its illusory nature causes some to perceive it as a gem nestled within the landscape, while others mistake it for a mere rock formation.",
"archetypes": ["Nefty_Shibark", "Nefty_Unikirin", "Nefty_Zzoo"]
},
"xxxxx": {
"name": "Pumpkin Egg",
"description": "xxxxx",
"archetypes": ["Nefty_Hollowoo"]
}
}
6 changes: 4 additions & 2 deletions ts/src/deps/nefties_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"Nefty_Ghouliath": "Ghouliath",
"Nefty_Whiskube": "Whiskube",
"Nefty_Walpuff": "Walpuff",
"Nefty_Dinotusk": "Dinotusk"
"Nefty_Dinotusk": "Dinotusk",
"Nefty_Hollowoo": "Hollowoo"
},
"family_to_description": {
"Bitebit": "Bitebit may look cuddly, but don't be fooled by its charm - those aren't paper hands... they're DIAMOND CLAWS!",
Expand All @@ -51,6 +52,7 @@
"Ghouliath": "Ghouliaths were mighty dragons once, but they now linger as ghosts until their unresolved matters are dealt with...",
"Whiskube": "Whiskubes love to rest on ice, but their reflective bodies cause them to melt it while sleeping. This leads to a sudden plunge into cold water, giving them quite the wake-up call!",
"Walpuff": "Walpuffs are known for their soft heads but sturdy bodies. That's why they wear protective headgear adorned with razor-sharp tusks, providing formidable armor!",
"Dinotusk": "Dinotusks use their unique tails to ground themselves to Tokane, generating energy and enabling survival in harsh environments."
"Dinotusk": "Dinotusks use their unique tails to ground themselves to Tokane, generating energy and enabling survival in harsh environments.",
"Hollowoo": "xxxxx"
}
}
33 changes: 33 additions & 0 deletions ts/src/deps/schemas/adventures/v0.0.6.json
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,39 @@
"id": "ID_FULLBLITZ_ABILITY_LIGHTNING_08"
}
]
},
"id_hollowoo": {
"id": "id_hollowoo",
"type": "Hollowoo",
"element": "Plant",
"hpMin": 108,
"hpMax": 130,
"atkMin": 54,
"atkMax": 65,
"defMin": 50,
"defMax": 60,
"speedMin": 42,
"speedMax": 50,
"hypeMin": 0,
"hypeMax": 999,
"passive": -1,
"abilitiesArray": [
{
"id": "ID_FULLBLITZ_ABILITY_FIRE_15"
},
{
"id": "ID_FULLBLITZ_ABILITY_PLANT_22"
},
{
"id": "ID_FULLBLITZ_ABILITY_PLANT_23"
},
{
"id": "ID_FULLBLITZ_ABILITY_PLANT_24"
},
{
"id": "ID_FULLBLITZ_ABILITY_NORMAL_41"
}
]
}
}
}
3 changes: 2 additions & 1 deletion ts/src/deps/schemas/aurory_dna_v4.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"22": "Nefty_Ghouliath",
"23": "Nefty_Whiskube",
"24": "Nefty_Walpuff",
"25": "Nefty_Dinotusk"
"25": "Nefty_Dinotusk",
"26": "Nefty_Hollowoo"
},
"rarities": {
"0": "Common",
Expand Down
5 changes: 5 additions & 0 deletions ts/tests/dna.v2.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const displayNamesProd = [
'Whiskube',
'Walpuff',
'Dinotusk',
'Hollowoo',
];

const allSchemaVersions = readdirSync('./src/deps/schemas')
Expand Down Expand Up @@ -79,6 +80,10 @@ describe('Basic', () => {
assert.ok(Number.isInteger(data.dataAdv.hpComputed));
assert.ok(Number.isInteger(data.dataAdv.speedComputed));
assert.ok(data.version);

if (data.data.displayName === 'Hollowoo') {
console.log(data);
}
});
});
});
Expand Down

0 comments on commit d308bd5

Please sign in to comment.