Current state
This commit is contained in:
commit
0508cb4d83
6 changed files with 2005 additions and 0 deletions
91
party.py
Normal file
91
party.py
Normal file
|
@ -0,0 +1,91 @@
|
|||
tidus = {
|
||||
"maxhp": 520,
|
||||
"maxmp": 12,
|
||||
"strength": 15,
|
||||
"defence": 5,
|
||||
"magic": 5,
|
||||
"mdef": 5,
|
||||
"agility": 10,
|
||||
"luck": 18,
|
||||
"evasion": 10,
|
||||
"accuracy": 10
|
||||
}
|
||||
|
||||
wakka = {
|
||||
"maxhp": 618,
|
||||
"maxmp": 10,
|
||||
"strength": 14,
|
||||
"defence": 10,
|
||||
"magic": 10,
|
||||
"mdef": 5,
|
||||
"agility": 7,
|
||||
"luck": 19,
|
||||
"evasion": 5,
|
||||
"accuracy": 25
|
||||
}
|
||||
|
||||
yuna = {
|
||||
"maxhp": 475,
|
||||
"maxmp": 84,
|
||||
"strength": 5,
|
||||
"defence": 5,
|
||||
"magic": 20,
|
||||
"mdef": 20,
|
||||
"agility": 10,
|
||||
"luck": 17,
|
||||
"evasion": 30,
|
||||
"accuracy": 3
|
||||
}
|
||||
|
||||
lulu = {
|
||||
"maxhp": 380,
|
||||
"maxmp": 92,
|
||||
"strength": 5,
|
||||
"defence": 8,
|
||||
"magic": 20,
|
||||
"mdef": 30,
|
||||
"agility": 5,
|
||||
"luck": 17,
|
||||
"evasion": 40,
|
||||
"accuracy": 3
|
||||
}
|
||||
|
||||
kimahri = {
|
||||
"maxhp": 644,
|
||||
"maxmp": 78,
|
||||
"strength": 16,
|
||||
"defence": 15,
|
||||
"magic": 17,
|
||||
"mdef": 5,
|
||||
"agility": 6,
|
||||
"luck": 18,
|
||||
"evasion": 5,
|
||||
"accuracy": 5
|
||||
}
|
||||
|
||||
auron = {
|
||||
"maxhp": 1030,
|
||||
"maxmp": 33,
|
||||
"strength": 20,
|
||||
"defence": 15,
|
||||
"magic": 5,
|
||||
"mdef": 5,
|
||||
"agility": 5,
|
||||
"luck": 17,
|
||||
"evasion": 5,
|
||||
"accuracy": 3
|
||||
}
|
||||
|
||||
rikku = {
|
||||
"maxhp": 360,
|
||||
"maxmp": 85,
|
||||
"strength": 10,
|
||||
"defence": 8,
|
||||
"magic": 10,
|
||||
"mdef": 8,
|
||||
"agility": 15,
|
||||
"luck": 18,
|
||||
"evasion": 5,
|
||||
"accuracy": 5
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue