終極合體!滑鏟姐+女武神 = ??【歐皇模擬器測試實況】

滑武神更改教程:
1.饑荒-管理-瀏覽本地文件,用記事本打開dont_starve\data\DLC0003\scripts\prefabs\wathgrithr
2.找到local function custom_init(inst)一行,在上方粘貼:
local function AllowDodge(inst)
??return (GetTime() - inst.last_dodge_time > TUNING.WHEELER_DODGE_COOLDOWN) and?
??????not inst.components.driver:GetIsDriving() and not inst.components.rider:IsRiding()
end
local function GetPointSpecialActions(inst, pos, useitem, right)
??if right then
?? if AllowDodge(inst) then
???? return { ACTIONS.DODGE }
????end
??end
??return {}
end

3.找到local function custom_init(inst)函數(shù)下的inst.components.health:SetAbsorptionAmount(TUNING.WATHGRITHR_ABSORPTION)一行,在下方粘貼:
inst.last_dodge_time = GetTime()
?? inst.components.playeractionpicker.pointspecialactionsfn = GetPointSpecialActions
?? inst:AddComponent("reticule")
?? inst.components.reticule.targetfn = function()?
?????? return Vector3(inst.entity:LocalToWorldSpace(5.5,0,0))
?? end
?? inst.components.reticule:SetValidateFn(AllowDodge)
? inst.components.reticule.ease = false

4.復(fù)制并替換dont_starve\data\DLC0001\scripts\prefabs\wathgrithr和dont_starve\data\DLC0002\scripts\prefabs\wathgrithr路徑中的wathgrithr文件。也可以不替換,生成世界中,你選擇兼容哪個DLC,游戲就運行哪個DLC中的wathgrithr文件,比如兼容哈姆雷特,游戲就運行DLC0003中的wathgrithr文件