《文明6》修改MOD合集第二弹 核子虎蹲炮、龙脉修改教程(6)
导语:通过上面一段 CrouchingTiger的代码我们把虎蹲炮的战斗类型改成了 CrouchingTigerCombat,为了修改战斗效果我们需要继续搜索 m_Name text="CrouchingTigerCombat"/ Element m_Fields m_Values Element class="Asset
通过上面一段CrouchingTiger的代码我们把虎蹲炮的战斗类型改成了CrouchingTigerCombat,为了修改战斗效果我们需要继续搜索<m_Name text="CrouchingTigerCombat"/>
<Element><m_Fields>
<m_Values>
<Element class="AssetObjects::FloatValue">
<m_fValue>36.000000</m_fValue>
<m_ParamName text="Speed"/>
</Element>
<Element class="AssetObjects::FloatValue">
<m_fValue>3.410000</m_fValue>
<m_ParamName text="Radius"/>
</Element>
<Element class="AssetObjects::FloatValue">
<m_fValue>8.000000</m_fValue>
<m_ParamName text="PathTurnDist"/>
</Element>
<Element class="AssetObjects::IntValue">
<m_nValue>360</m_nValue>
<m_ParamName text="TurnRate"/>
</Element>
<Element class="AssetObjects::BoolValue">
<m_bValue>false</m_bValue>
<m_ParamName text="NoDamage"/>
</Element>
<Element class="AssetObjects::BoolValue">
<m_bValue>false</m_bValue>
<m_ParamName text="NoAttack"/>
</Element>
<Element class="AssetObjects::BoolValue">
<m_bValue>false</m_bValue>
<m_ParamName text="DiesLast"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text="CrouchingTigerAttack"/>单位的攻击战斗效果为CrouchingTigerAttack,等会儿我们需要修改这个词条对应的内容来修改他的攻击效果
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text="Units"/>
<m_ParamName text="CombatAttack"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text=""/>
<m_ArtDefPath text=""/>
<m_CollectionIsLocked>false</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="HeroAttack"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text="CrouchingTigerDefend"/> 单位的防御战斗效果为CrouchingTigerDefend,这里我们就不改了,防御也丢核弹不好吧?
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text="Units"/>
<m_ParamName text="DefensiveAttack"/>
</Element>
<Element class="AssetObjects::FloatValue">
<m_fValue>0.000000</m_fValue>
<m_ParamName text="MaxSmallMoveDistance"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="CombatAttack_1"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="HeroAttack_1"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="DefensiveAttack_1"/>
</Element>
<Element class="AssetObjects::BoolValue">
<m_bValue>false</m_bValue>
<m_ParamName text="UsesTurnAnims"/>
</Element>
<Element class="AssetObjects::BoolValue">
<m_bValue>false</m_bValue>
<m_ParamName text="IsNaval"/>
</Element>
<Element class="AssetObjects::FloatValue">
<m_fValue>0.000000</m_fValue>
<m_ParamName text="VehicleTurnRadius"/>
</Element>
<Element class="AssetObjects::FloatValue">
<m_fValue>0.000000</m_fValue>
<m_ParamName text="CombatRunStopTime"/>
</Element>
<Element class="AssetObjects::BoolValue">
<m_bValue>false</m_bValue>
<m_ParamName text="NoFormup"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="CombatAttack_2"/>
</Element>
<Element class="AssetObjects::FloatValue">
<m_fValue>0.000000</m_fValue>
<m_ParamName text="CombatRunStartTime"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="CombatAttack_3"/>
</Element>
<Element class="AssetObjects::ArtDefReferenceValue">
<m_ElementName text=""/>
<m_RootCollectionName text="CombatAttack"/>
<m_ArtDefPath text="Units.artdef"/>
<m_CollectionIsLocked>true</m_CollectionIsLocked>
<m_TemplateName text=""/>
<m_ParamName text="CombatAttack_4"/>
</Element>
</m_Values>
</m_Fields>
<m_ChildCollections/>
<m_Name text="CrouchingTigerCombat"/>刚才我们搜索的就是这里
</Element>
相关新闻
- 《文明6》波斯文明特性与领袖详解 波斯文明UA、UU及UI一览2017年03月23日
- 《文明6》新手入门玩法技巧分享 新手怎么快速入门2017年03月23日
- 《尼尔机械纪元》修改器怎么用 十七项修改器及使用方法2017年03月22日
- 《质量效应仙女座》修改器及使用方法 质量效应仙女座修改器怎么用2017年03月22日
- 《怪物猎人XX》存档修改详细图文教程 怎么修改存档2017年03月22日
- 《三国志13威力加强版》剧本信息修改器使用说明 兵种、战法与绊修改2017年03月19日
健康游戏忠告 抵制不良游戏,拒绝盗版游戏,注意自我保护,谨防上当受骗 适度游戏益脑,沉迷游戏伤身,合理安排时间,享受健康生活
- 本站部分文字及图片均来自于网络,如不慎侵害的您的权益,请及时通知我们,我们将尽快安排处理。
- 提示:本站为防止低俗内容出现,用户发表的评论及上传游戏需本站审核后才能显示出来,感谢理解!
我爱游戏网 Copyright © 2010 - 2017 52Youxi.Cn All Rights Reserved ICP备案:浙ICP备12044117号






