骑马与砍杀中文站论坛

用户名  找回密码
 注册(Register!)

QQ登录

只需一步,快速开始

帖子
购买CDKEY 衣谷三国
查看: 146|回复: 1

[源码与工具] 骑砍2技能系统(战争之风)

[复制链接]

33

主题

232

回帖

195

积分

见习骑士

Rank: 3

UID
2758789
第纳尔
2138
精华
0
互助
21
荣誉
1
贡献
0
魅力
201
注册时间
2016-7-18
鲜花(24) 鸡蛋(0)
发表于 前天 15:38 | 显示全部楼层 |阅读模式
本帖最后由 路过的罗格 于 2025-4-1 16:02 编辑

源码:https://github.com/Luguode-Rogue/New_ZZZF/tree/master/New_ZZZF

整个流程已经跑通了,开始铺量往里面填代码



技能选择界面:

入口:SkillInventoryManager.OpenInventoryPresentation()
核心代码
  1.             // 切换游戏状态
  2.             var inventoryState = Game.Current.GameStateManager.CreateState<SkillInventoryState>();
  3.             inventoryState.InitializeLogic(_inventoryLogic);
  4.             Game.Current.GameStateManager.PushState(inventoryState, 0);
复制代码
界面代码:GauntletSkillScreen
核心代码
  1.             this._dataSource = new SPSkillVM(inventoryLogic, false/*mission != null && mission.DoesMissionRequireCivilianEquipment*/, new Func<WeaponComponentData, ItemObject.ItemUsageSetFlags>(this.GetItemUsageSetFlag), this.GetFiveStackShortcutkeyText(), this.GetEntireStackShortcutkeyText()); // 初始化数据源
  2.             this._gauntletLayer = new GauntletLayer(15, "GauntletLayer", true) // 创建 Gauntlet 层
  3.             base.AddLayer(this._gauntletLayer); // 添加层
  4.             this._gauntletMovie = this._gauntletLayer.LoadMovie("Inventory", this._dataSource); // 加载电影(界面)

复制代码
界面数据代码:SPSkillVM

界面Xml直接使用游戏本身的物品界面Inventory

新增一个技能的流程:
1.新建一个类,继承SkillBase,然后完成构造方法/Activate方法/CheckCondition方法。
(点击展开 / 收起)


2.在SkillFactory类的_skillRegistry字典中,添加这个新技能的信息。现在,这个技能就一个可以在打开技能界面时被看到了。
(点击展开 / 收起)

3.完成技能文本的翻译部分。
比如嘲讽的文本是
  1. Text = new TaleWorlds.Localization.TextObject("{=ZZZF0023}ChaoFeng");
  2. Description = new TaleWorlds.Localization.TextObject("{=ZZZF0024}嘲讽附近敌方单位,并持续大幅回复自身血量。受到嘲讽的单位会持续靠近施法者。持续时间:30秒。冷却时间:60秒。");
复制代码
所以在_Module\ModuleData\languages\CNs\ZZZF_Skill-CN.xml中,添加对应的ZZZF0023/ZZZF0024号翻译
  1.   <string id="ZZZF0023" text="嘲讽"/>
  2.                 <string id="ZZZF0024" text="嘲讽附近敌方单位,并持续大幅回复自身血量。受到嘲讽的单位会持续靠近施法者。消耗耐力:20。持续时间:30秒。冷却时间:60秒。"/>
复制代码

新增一个buff状态
1.新建一个类,继承自AgentBuff,并且完成构造函数/OnApply等方法(可以为空)
2.对于强化人物属性(比如增加移动速度)的buff,需要在ZZZF_SandboxAgentStatCalculateModel类中,UpdateHumanStats方法内增加代码,实现一下对应buff下的属性强化。
    注意,单纯的调用agent.AgentDrivenProperties去修改强化数值,只能在修改的那一帧生效,所以必须使用复写UpdateHumanStats的方法,让他持续生效
3.对于强化伤害的buff,需要在WOW_Script_AgentStatCalculateModel方法中添加代码(百分比增伤),或者在\Systems\NewDamageModel.cs中其他的伤害相关代码中调整(固定数值增伤)
4.附加一个buff给士兵的代码
  1.         public override bool Activate(Agent agent)
  2.         {

  3.             // 每次创建新的状态实例
  4.             List<AgentBuff> newStates = new List<AgentBuff> { new ZhanYiBuff(8f, agent), }; // 新实例
  5.             foreach (var state in newStates)
  6.             {
  7.                 state.TargetAgent = agent;
  8.                 agent.GetComponent<AgentSkillComponent>().StateContainer.AddState(state);
  9.             }
  10.             return true;

  11.         }
复制代码


士兵技能配置:
New_ZZZF\_Module\ModuleData\troop_skills.xml
<Troop id="commander_1">中,troopid为NPCCharacter中的id。
  1. <NPCCharacter
  2.                 id="imperial_veteran_infantryman"
  3.                 default_group="Infantry"
  4.                 level="21"
  5.                 name="{=yrGYZsQ7}Imperial Veteran Infantryman"
  6.                 occupation="Soldier"
  7.                 culture="Culture.empire">
复制代码
技能则是填入SkillFactory._skillRegistry字典中的字符串



屏幕截图 2025-04-01 155759.jpg
31.jpg
32.jpg
33.jpg


鲜花鸡蛋

咸鱼圣代  在昨天 22:34  送朵鲜花  并说:我非常同意你的观点,送朵鲜花鼓励一下

0

主题

7

回帖

2

积分

平民

Rank: 1

UID
2858591
第纳尔
31
精华
0
互助
0
荣誉
0
贡献
0
魅力
0
注册时间
2017-7-23
鲜花(0) 鸡蛋(0)
发表于 前天 17:59 | 显示全部楼层
哇哦,是大佬,赞美大佬
您需要登录后才可以回帖 登录 | 注册(Register!)

本版积分规则

Archiver|手机版|小黑屋|骑马与砍杀中文站

GMT+8, 2025-4-3 23:57 , Processed in 0.067517 second(s), 21 queries , Gzip On, MemCached On.

Powered by Discuz! X3.4 Licensed

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表