JavaScript error: Cannot read properties of undefined (reading '0') (https://git.viorsan.com/assets/js/index.js?v=10.0.3~gitea-1.22.0 @ 112:58950). Open browser console to see more details.
bondage-college-mirr/C001_BeforeClass/Fight/Script.js
Ben987 ed6195edf4 More skills
More skills
2018-03-01 00:35:26 -05:00

26 lines
No EOL
719 B
JavaScript

// Chapter 5 - Before Class Fight Load
function C001_BeforeClass_Fight_Load() {
LoadFight("FightOutro", "Hard", Icons.Fight.Punch, PlayerGetSkillLevel("Fighting"));
}
// Chapter 5 - Before Class Fight Run
function C001_BeforeClass_Fight_Run() {
RenderFight();
}
// Chapter 5 - Before Class Fight Click
function C001_BeforeClass_Fight_Click() {
FightClick();
}
// Chapter 5 - Before Class Fight Key Down
function C001_BeforeClass_Fight_KeyDown() {
FightKeyDown();
}
// Chapter 5 - Before Class Fight End
function C001_BeforeClass_Fight_FightEnd(Victory) {
if (Victory) PlayerAddSkill("Fighting", 1);
if (Victory) C001_BeforeClass_FightOutro_FightResult = 1;
else C001_BeforeClass_FightOutro_FightResult = 2;
}