-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCharacters.java
More file actions
24 lines (22 loc) · 770 Bytes
/
Copy pathCharacters.java
File metadata and controls
24 lines (22 loc) · 770 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
/**
* Created by James Page on 4/18/2017.
*/
package Main;
import static Main.SupportMethods.createArrRange;
public class Characters extends Stats {
protected static final String[] Characters = {"Cloud", "Barret", "Tifa", "Aeris", "Red XIII", "Yuffie", "Cait Sith", "Vincent", "Cid"};
private String Character;
private int level;
protected static int[] levelRanges = createArrRange(1, 99);
private int baseHp;
private int baseMp;
private int baseStrength;
private int baseDexterity;
private int baseVitality;
private int baseMagic;
private int baseSpirit;
private int baseLuck;
Weapons weapon = new Weapons();
Armors armor = new Armors();
Accessories accessory = new Accessories();
}