-
Notifications
You must be signed in to change notification settings - Fork 0
/
UNIT.bt
45 lines (39 loc) · 995 Bytes
/
UNIT.bt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//------------------------------------------------
//--- 010 Editor v11.0.1 Binary Template
//
// File: MAGIC.bt
// Authors: Florian Eßl
// Version:
// Purpose: SRPG95 File format
// Category: Games
// File Mask: UNIT.DAT
// ID Bytes:
// History: https://github.com/florianessl/srpg95-fileformat
//------------------------------------------------
struct UNIT {
char name[20];
char zero_padding_0[12];
int face; //maps to BMP/FACE_%03d.BMP
int class_id;
int level_start;
int exp_start;
//Stats
int hp_start;
int mp_start;
int power_start;
int intel_start;
int skill_start;
int stamina_start;
int hp_growth;
int mp_growth;
int power_growth;
int intel_growth;
int skill_growth;
int stamina_growth;
//Equipped
int eqp_weapon; //-1 = None
int eqp_armor; //-1 = None
int eqp_other; //-1 = None
char death_message[72];
char unk_0[300];
} unit[250];