コード例 #1
0
ファイル: BaseNPC.cs プロジェクト: floatyears/CodeX
 public void AddAbility(string name)
 {
     abilities.Add(AbilityParser.Parse(name));
 }
コード例 #2
0
ファイル: ActionAddAbility.cs プロジェクト: floatyears/CodeX
 protected override bool ExeOnTarget(BaseEntity target)
 {
     (target as BaseNPC).AddAbility(AbilityParser.Parse(abilityName));
     return(true);
 }