15 lines
399 B
TypeScript
15 lines
399 B
TypeScript
|
|
||
|
import { ESkillType, EMagicType, EActionType, EBuffType } from "../../../game/role/EEnum";
|
||
|
import SkillBase from "../core/SkillBase";
|
||
|
|
||
|
// 穆如清风
|
||
|
export default class MuRuQingFeng extends SkillBase {
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.skill_id = ESkillType.MuRuQingFeng;
|
||
|
this.skill_name = '穆如清风';
|
||
|
this.action_type = EActionType.PASSIVE;
|
||
|
this.kind = ESkillType.MuRuQingFeng;
|
||
|
}
|
||
|
}
|