Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate artifact mod unlocks #461

Closed
Closed
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
Generate artifact mod unlocks
  • Loading branch information
robojumper committed Mar 17, 2023
commit f3dad8f4d35272bdfa3742ffe779a467ccb1b2eb
47 changes: 47 additions & 0 deletions data/artifact-mod-unlocks.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
export const artifactPlugUnlocks: { [artifactModHash: number]: number[] } = {
'3555350688': [
2283894334, // Solar Weapon Surge
3675553168, // Solar Holster
56663992, // Solar Scavenger
1086997255, // Solar Siphon
331268185, // Solar Targeting
1019574576, // Unflinching Solar Aim
411014648, // Solar Reserves
634608391, // Solar Loader
531665167, // Solar Dexterity
],
'3555350690': [
3914973263, // Void Weapon Surge
2634786903, // Void Holster
2815817957, // Void Scavenger
1210012576, // Void Siphon
2888195476, // Void Targeting
3887037435, // Unflinching Void Aim
2413278875, // Void Reserves
3224649746, // Void Loader
1017385934, // Void Dexterity
],
'3555350691': [
1501094193, // Strand Weapon Surge
2805854721, // Strand Holster
1305848463, // Strand Scavenger
3279257734, // Strand Siphon
3013778406, // Strand Targeting
3598972737, // Unflinching Strand Aim
2303417969, // Strand Reserves
95934356, // Strand Loader
3979300428, // Strand Dexterity
],
'3555350692': [
2831374162, // Solar/Strand Dual Siphon
110793779, // Void/Strand Dual Siphon
],
'3555350693': [
2136310244, // Ashes to Assets
965934024, // Firepower
2031584061, // Momentum Transfer
3245543337, // Bolstering Detonation
1924584408, // Grenade Kickstart
1153260021, // Impact Induction
],
};
47 changes: 47 additions & 0 deletions output/artifact-mod-unlocks.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
export const artifactPlugUnlocks: { [artifactModHash: number]: number[] } = {
'3555350688': [
2283894334, // Solar Weapon Surge
3675553168, // Solar Holster
56663992, // Solar Scavenger
1086997255, // Solar Siphon
331268185, // Solar Targeting
1019574576, // Unflinching Solar Aim
411014648, // Solar Reserves
634608391, // Solar Loader
531665167, // Solar Dexterity
],
'3555350690': [
3914973263, // Void Weapon Surge
2634786903, // Void Holster
2815817957, // Void Scavenger
1210012576, // Void Siphon
2888195476, // Void Targeting
3887037435, // Unflinching Void Aim
2413278875, // Void Reserves
3224649746, // Void Loader
1017385934, // Void Dexterity
],
'3555350691': [
1501094193, // Strand Weapon Surge
2805854721, // Strand Holster
1305848463, // Strand Scavenger
3279257734, // Strand Siphon
3013778406, // Strand Targeting
3598972737, // Unflinching Strand Aim
2303417969, // Strand Reserves
95934356, // Strand Loader
3979300428, // Strand Dexterity
],
'3555350692': [
2831374162, // Solar/Strand Dual Siphon
110793779, // Void/Strand Dual Siphon
],
'3555350693': [
2136310244, // Ashes to Assets
965934024, // Firepower
2031584061, // Momentum Transfer
3245543337, // Bolstering Detonation
1924584408, // Grenade Kickstart
1153260021, // Impact Induction
],
};
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"generate:glyph-enums": "dotenv node built/src/generate-font-glyph-enums.js && tsc",
"generate:legacy-triumphs": "fse copy --quiet data/legacy-triumphs.json output/legacy-triumphs.json",
"generate:stat-effects": "fse copy --quiet data/stat-effects.ts output/stat-effects.ts",
"generate:artifact-mod-unlocks": "fse copy --quiet data/artifact-mod-unlocks.ts output/artifact-mod-unlocks.ts",
"generate:trials-objectives": "dotenv node built/src/generate-trials-objectives.js",
"generate:crafting-enhanced-intrinsics": "dotenv node built/src/generate-crafting-enhanced-intrinsics.js",
"generate:trait-enhanced-trait": "dotenv node built/src/generate-trait-enhanced-trait-lookup.js",
Expand Down