Skip to content

Commit

Permalink
feat: add Helminth abilities (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlayerOrnstein authored Nov 1, 2024
1 parent 3a2eb98 commit c1110e1
Show file tree
Hide file tree
Showing 18 changed files with 57,939 additions and 57,909 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: npx commitlint --last
- run: npm test
env:
NODE_OPTIONS: '--max_old_space_size=4096'
NODE_OPTIONS: '--max_old_space_size=5120'
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4.1.1
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
- run: npm i --no-save warframe-worldstate-data@^2
- name: Test
env:
NODE_OPTIONS: '--max_old_space_size=4096'
NODE_OPTIONS: '--max_old_space_size=5120'
run: npm test
- name: Regression
env:
Expand Down
15 changes: 15 additions & 0 deletions build/scraper.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,21 @@ class Scraper {

if (category === 'Weapons') data.push(...raw.ExportRailjackWeapons);

if (category === 'Warframes') {
const helminth = {
uniqueName: '/Lotus/Powersuits/PowersuitAbilities/Helminth',
name: 'Helminth',
health: 0,
shield: 0,
armor: 0,
stamina: 0,
power: 0,
abilities: raw.ExportAbilities,
};

data.push(helminth);
}

if (category === 'Upgrades') {
const modSets = raw.ExportModSet.map((modSet) => ({
...modSet,
Expand Down
Loading

0 comments on commit c1110e1

Please sign in to comment.