blob: 8c9c8942b672fbf460705d7d9c53bf29e0efb211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
struct spell {
u16 index;
u16 type;
u16 element;
u16 targets;
u16 skill;
u16 mp_cost;
u8 casting_time;
u8 recast_delay;
u8 level[24] hex;
u16 id;
u8 unknown;
u8 jp_name[20] | encoding('sjis') str;
u8 en_name[20] | encoding('ascii') str;
u8 jp_description[128] | encoding('sjis') str;
u8 en_description[128] | encoding('ascii') str;
u8 padding[687] nul;
};
struct dat {
struct spell spell[$];
};
|