|
|
转自n网:https://www.nexusmods.com/hades2/mods/84
Break free of the cruel will of the fates and freely choose whichever weapon you wish to wield each night without incurring the ire of the gods for being 'suboptimal'.
摆脱命运的残酷意志,自由选择你每晚想要使用的任何武器,而不会因为“次优”而引起众神的愤怒。
Gives all weapons the Grave Thirst effect of the Incantation 'Gathering of Ancient Bones' each night. Must have completed the incantation for effects to appear.
每晚赋予所有武器咒语“聚集古骨”的严重口渴效果。必须完成咒语才能出现效果。
Installation 安装
Replace the files in \Hades II\Content\Scripts\ with the files from \ThirstyWeapons\Scripts\
将 \Hades II\Content\Scripts\ 中的文件替换为 \ThirstyWeapons\Scripts\ 中的文件
Uninstall 卸载
Replace the files in \Hades II\Content\Scripts\ with the files from \ThirstyWeapons\Scripts\Backups\
将 \Hades II\Content\Scripts\ 中的文件替换为 \ThirstyWeapons\Scripts\Backups\ 中的文件
Manual implementation 手动实现
Change the following files in \Hades II\Content\Scripts\
更改 \Hades II\Content\Scripts\ 中的以下文件
CombatLogic.lua 战斗逻辑.lua
Change line 4688; 更改第 4688 行;
if IsBonusUnusedWeapon( weaponData.Name ) then
如果 IsBonusUnusedWeapon( weaponData.Name ) 则
to 自
if GameState.WorldUpgrades.WorldUpgradeUnusedWeaponBonus then
如果 GameState.WorldUpgrades.WorldUpgradeUnusedWeaponBonus 则
RunLogic.lua 运行逻辑.lua
Change line 452; 更改第 452 行;
if prevRun ~= nil and prevRun.BonusUnusedWeaponName ~= nil and CurrentRun.Hero.Weapons[prevRun.BonusUnusedWeaponName] then
如果 prevRun ~= nil 和 prevRun.BonusUnusedWeaponName ~= nil 和 CurrentRun.Hero.Weapons[prevRun.BonusUnusedWeaponName] 则
to 自
if prevRun ~= nil and prevRun.BonusUnusedWeaponName ~= nil then
如果 prevRun ~= nil 和 prevRun.BonusUnusedWeaponName ~= nil 则
UpgradeLogic.lua 升级逻辑.lua
Change line 834; 换行 834;
if GameState.WorldUpgrades.WorldUpgradeUnusedWeaponBonus and weaponName == CurrentRun.BonusUnusedWeaponName then
如果 GameState.WorldUpgrades.WorldUpgradeUnusedWeaponBonus 和 weaponName == CurrentRun.BonusUnusedWeaponName,则
to 自
if GameState.WorldUpgrades.WorldUpgradeUnusedWeaponBonus then
如果 GameState.WorldUpgrades.WorldUpgradeUnusedWeaponBonus 则
PS. if someone wants to make this into a 'proper' mod for thunderstore, go ahead.
PS. 如果有人想将其制作成 Thunderstore 的“正确”模组,请继续。
|
评分
-
1
查看全部评分
-
|