Skip to content

Commit

Permalink
Map out Synergy messaging and animations
Browse files Browse the repository at this point in the history
  • Loading branch information
zach2good committed Sep 1, 2024
1 parent a940864 commit 75d57e1
Show file tree
Hide file tree
Showing 15 changed files with 873 additions and 58 deletions.
10 changes: 9 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,9 @@
"SendToJailOffline",
"GetPlayerIDByName",
"PlayerHasValidSession",

"GetSynergyRecipeByID",
"GetSynergyRecipeByTrade",
],
"Lua.diagnostics.disable": [
"lowercase-global"
Expand Down Expand Up @@ -445,6 +448,11 @@
"ranges": "cpp",
"span": "cpp",
"expected": "cpp",
"string_view": "cpp"
"string_view": "cpp",
"cfenv": "cpp",
"cwctype": "cpp",
"scoped_allocator": "cpp",
"pointers": "cpp",
"*.inc": "cpp"
},
}
20 changes: 20 additions & 0 deletions scripts/enum/animation_strings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,24 @@ xi.animationString =
SPECIAL_10 = 'sp10', -- Zdei vertical barriers off, etc...
SPECIAL_20 = 'sp20', -- Zdei horizontal barriers on, etc...
SPECIAL_30 = 'sp30', -- Zdei horizontal barriers off, etc...

-- Synergy
SYNERGY_COMPLETE = 'ef40',
SYNERGY_FIRE_LEAK = 'ef81',
SYNERGY_ICE_LEAK = 'ef82',
SYNERGY_WIND_LEAK = 'ef83',
SYNERGY_EARTH_LEAK = 'ef84',
SYNERGY_LIGHTNING_LEAK = 'ef85',
SYNERGY_WATER_LEAK = 'ef86',
SYNERGY_LIGHT_LEAK = 'ef87',
SYNERGY_DARK_LEAK = 'ef88',
SYNERGY_FIRE_FEWELL = 'ef91',
SYNERGY_ICE_FEWELL = 'ef92',
SYNERGY_WIND_FEWELL = 'ef93',
SYNERGY_EARTH_FEWELL = 'ef94',
SYNERGY_LIGHTNING_FEWELL = 'ef95',
SYNERGY_WATER_FEWELL = 'ef96',
SYNERGY_LIGHT_FEWELL = 'ef97',
SYNERGY_DARK_FEWELL = 'ef98',
SYNERGY_STEAM = 'efa0',
}
Loading

0 comments on commit 75d57e1

Please sign in to comment.