-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStruct Spell Burning Arrows.j
More file actions
24 lines (20 loc) · 1016 Bytes
/
Copy pathStruct Spell Burning Arrows.j
File metadata and controls
24 lines (20 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/// Ranger
library StructSpellsSpellBurningArrows requires Asl, StructGameClasses, StructGameSpell
struct SpellBurningArrows extends Spell
public static constant integer abilityId = 'A0GS'
public static constant integer favouriteAbilityId = 'A0GT'
public static constant integer classSelectionAbilityId = 'A1JC'
public static constant integer classSelectionGrimoireAbilityId = 'A1JD'
public static constant integer maxLevel = 5
public static method create takes Character character returns thistype
local thistype this = thistype.createWithoutTriggers(character, Classes.ranger(), Spell.spellTypeNormal, thistype.maxLevel, thistype.abilityId, thistype.favouriteAbilityId)
call this.addGrimoireEntry('A1JC', 'A1JD')
call this.addGrimoireEntry('A0GU', 'A0GZ')
call this.addGrimoireEntry('A0GV', 'A0H0')
call this.addGrimoireEntry('A0GW', 'A0H1')
call this.addGrimoireEntry('A0GX', 'A0H2')
call this.addGrimoireEntry('A0GY', 'A0H3')
return this
endmethod
endstruct
endlibrary