Skip to content

Commit

Permalink
Added hunter trap RSM models
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAntares authored Nov 21, 2024
1 parent 80cbde6 commit ca1f8d9
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 13 deletions.
66 changes: 63 additions & 3 deletions src/DB/Effects/EffectTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -11529,8 +11529,8 @@ define(function( require )
}],

'ef_oldtrap_default': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa6\x30\x31',
type: 'SPR',
file: '\xb1\xe2\xba\xbb\xc6\xae\xb7\xa6',
attachedEntity: true,
}],

Expand All @@ -11557,10 +11557,70 @@ define(function( require )
file: '\xc3\xbb\xb7\xcf\xbb\xf6\xc6\xae\xb7\xa6',
attachedEntity: true,
}],

'ef_trap_01': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa601',
attachedEntity: true
}],

'ef_trap_02': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa602',
attachedEntity: true
}],

'ef_trap_03': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa603',
attachedEntity: true
}],

'ef_trap_03_2': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa603_2',
attachedEntity: true
}],

'ef_trap_03_3': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa603_3',
attachedEntity: true
}],

'ef_trap_03_4': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa603_4',
attachedEntity: true
}],

'ef_trap_03_5': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa603_5',
attachedEntity: true
}],

'ef_trap_03_6': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa603_6',
attachedEntity: true
}],

'ef_trap_04': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa604',
attachedEntity: true
}],

'ef_trap_05': [{
type: 'RSM',
file: '\xbf\xdc\xba\xce\xbc\xd2\xc7\xb0\x5c\xc6\xae\xb7\xa605',
attachedEntity: true
}],

'ef_': [{
wav: 'effect/',
attachedEntity: true
}]
}],
};
});
20 changes: 10 additions & 10 deletions src/DB/Skills/SkillUnit.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ define(['./SkillUnitConst', 'DB/Effects/EffectConst'], function( SU, EC )
SkillUnit[SU.UNT_FIREPILLAR_WAITING] = EC.EF_FIREPILLARON;
SkillUnit[SU.UNT_ICEWALL] = EC.EF_ICEWALL;
SkillUnit[SU.UNT_QUAGMIRE] = EC.EF_QUAGMIRE;
SkillUnit[SU.UNT_BLASTMINE] = 'ef_oldtrap_yellow'; // Tofix
SkillUnit[SU.UNT_SKIDTRAP] = 'ef_oldtrap_yellow'; // Tofix
SkillUnit[SU.UNT_ANKLESNARE] = 'ef_oldtrap_default'; // Tofix
SkillUnit[SU.UNT_BLASTMINE] = 'ef_trap_03_3';
SkillUnit[SU.UNT_SKIDTRAP] = 'ef_trap_02';
SkillUnit[SU.UNT_ANKLESNARE] = 'ef_trap_01';
SkillUnit[SU.UNT_VENOMDUST] = EC.EF_VENOMDUST2;
SkillUnit[SU.UNT_LANDMINE] = 'ef_oldtrap_green'; // Tofix
SkillUnit[SU.UNT_SHOCKWAVE] = 'ef_oldtrap_blue'; // Tofix
SkillUnit[SU.UNT_SANDMAN] = 'ef_oldtrap_green'; // Tofix
SkillUnit[SU.UNT_FLASHER] = 'ef_oldtrap_red'; // Tofix
SkillUnit[SU.UNT_FREEZINGTRAP] = 'ef_oldtrap_blue'; // Tofix
SkillUnit[SU.UNT_CLAYMORETRAP] = 'ef_oldtrap_red'; // Tofix
SkillUnit[SU.UNT_TALKIEBOX] = 'ef_oldtrap_default'; // Tofix
SkillUnit[SU.UNT_LANDMINE] = 'ef_trap_03';
SkillUnit[SU.UNT_SHOCKWAVE] = 'ef_trap_03_6';
SkillUnit[SU.UNT_SANDMAN] = 'ef_trap_03_4';
SkillUnit[SU.UNT_FLASHER] = 'ef_trap_03_5';
SkillUnit[SU.UNT_FREEZINGTRAP] = 'ef_trap_03_2';
SkillUnit[SU.UNT_CLAYMORETRAP] = 'ef_trap_04';
SkillUnit[SU.UNT_TALKIEBOX] = 'ef_trap_05';
SkillUnit[SU.UNT_VOLCANO] = EC.EF_BOTTOM_VO;
SkillUnit[SU.UNT_DELUGE] = EC.EF_BOTTOM_DE;
SkillUnit[SU.UNT_VIOLENTGALE] = EC.EF_BOTTOM_VI;
Expand Down

0 comments on commit ca1f8d9

Please sign in to comment.