This commit is contained in:
2024-03-18 21:37:40 +08:00
commit c4aef8f3a3
313 changed files with 74071 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/*
文件名:ProcPassiveSkill_ATGunner.nut
路径:ProcPassiveSkill/ProcPassiveSkill_ATGunner.nut
创建日期:2022-09-09 19:11
文件用途:女枪手被动技能
*/
if (!getroottable().rawin("ProcPassiveSkill_ATGunner_Table")) ProcPassiveSkill_ATGunner_Table <- {}
function ProcPassiveSkill_ATGunner(obj, Index, Level) {
ProcPassiveSkill_All(obj, Index, Level);
if (ProcPassiveSkill_ATGunner_Table.rawin(Index) == true) {
ProcPassiveSkill_ATGunner_Table[Index](obj, Index, Level);
}
}

View File

@@ -0,0 +1,12 @@
/*
文件名:ProcPassiveSkill_All.nut
路径:ProcPassiveSkill/ProcPassiveSkill_All.nut
创建日期:2022-09-09 19:11
文件用途:全职业被动技能
*/
function ProcPassiveSkill_All(obj, Index, Level) {
}