安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
Since you created the handy soldier stat popup box for combat, it probably would be pretty straightfoward and super useful to also incorporate that into a popup in the armory when I hover over a soldier's name. That way I can see all the hidden stats that vanilla doesn't show, which is huge for anyone playing with Not Created Equally and Hidden Potential mods.
However, there is one thing that is missing for me. I like to use not created equal and sadly that makes hiring new recruits ("recruit" in the armory) a guessing game. Any chance you could add a tooltip for their stats?
https://drive.google.com/file/d/0B1dEhLOK6ejJTXlrV3VvQWtGUzg/view?usp=sharing
Quick update
Minor fix to how crit damage is calculated, isn't relevant in vanilla but could be relevant with modded weapons and abilities.
Haywire Protocol and Skulljacks should display their hack chances now
There's still the missing xcomnativepawn.uc file, that's needed to apply mindamagepreviews to melee attacks.
Added weapon damage/spread/plusone to the enemy tool tip
Afterall, knowing whether an advent captain has a 20% to hit for 4, or 50%, or 80% to hit for 4 is a pretty big deal in the early game.
This is an addition to XCom_Perfect_Information_UITacticalHUD_Enemies
With the change, the game will display an XCom icon when targeting a loot drop
Without it, the game will display a rainbow error icon
XCom_Perfect_Information_UITacticalHUD_ShotHUD.uc
the line:
GrimyCritChance = clamp(GrimyCritChance,0,100-GrimyDodgeChance);
should be:
GrimyCritChance = clamp(GrimyCritChance,0,GrimyHitChance-GrimyDodgeChance);
class XCom_Perfect_Information_XComUnitPawnNativeBase
needs to be changed to extend:
XComPathingPawn
Likewise the engine.ini file needs to be changed as well:
+ModClassOverrides=(BaseGameClass="XComPathingPawn", ModClass="XCom_Perfect_Information_XComUnitPawnNativeBase")
latest project, including the last few posts as well
wouldnt:
calcHitChance = AbilityContext.ResultContext.CalculatedHitChance;
be better than recalculating the hit chance?
unfortunately the resultcontext doesn't store the dodge chance and crit chance. We'd need a highlander for that.