forked from Rangi42/polishedcrystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnatures.asm
113 lines (110 loc) · 2.29 KB
/
natures.asm
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
NatureNames:
table_width 1, NatureNames
dr .Hardy
dr .Lonely
dr .Brave
dr .Adamant
dr .Naughty
dr .Bold
dr .Docile
dr .Relaxed
dr .Impish
dr .Lax
dr .Timid
dr .Hasty
dr .Serious
dr .Jolly
dr .Naive
dr .Modest
dr .Mild
dr .Quiet
dr .Bashful
dr .Rash
dr .Calm
dr .Gentle
dr .Sassy
dr .Careful
dr .Quirky
dr .NoNature
assert_table_length NUM_NATURES + 1
.Hardy: db "Hardy@"
.Lonely: db "Lonely@"
.Brave: db "Brave@"
.Adamant: db "Adamant@"
.Naughty: db "Naughty@"
.Bold: db "Bold@"
.Docile: db "Docile@"
.Relaxed: db "Relaxed@"
.Impish: db "Impish@"
.Lax: db "Lax@"
.Timid: db "Timid@"
.Hasty: db "Hasty@"
.Serious: db "Serious@"
.Jolly: db "Jolly@"
.Naive: db "Naive@"
.Modest: db "Modest@"
.Mild: db "Mild@"
.Quiet: db "Quiet@"
.Bashful: db "Bashful@"
.Rash: db "Rash@"
.Calm: db "Calm@"
.Gentle: db "Gentle@"
.Sassy: db "Sassy@"
.Careful: db "Careful@"
.Quirky: db "Quirky@"
.NoNature: db "---@"
NatureIndicators:
table_width 1, NatureIndicators
dr .HardyInd
dr .LonelyInd
dr .BraveInd
dr .AdamantInd
dr .NaughtyInd
dr .BoldInd
dr .DocileInd
dr .RelaxedInd
dr .ImpishInd
dr .LaxInd
dr .TimidInd
dr .HastyInd
dr .SeriousInd
dr .JollyInd
dr .NaiveInd
dr .ModestInd
dr .MildInd
dr .QuietInd
dr .BashfulInd
dr .RashInd
dr .CalmInd
dr .GentleInd
dr .SassyInd
dr .CarefulInd
dr .QuirkyInd
dr .NoNatureInd
assert_table_length NUM_NATURES + 1
.SassyInd: db "<NEXT>" ; fallthrough
.RashInd: db "<NEXT>" ; fallthrough
.ImpishInd: db "<NEXT>" ; fallthrough
.LonelyInd: db "↑<NEXT>↓@"
.NaiveInd: db "<NEXT>" ; fallthrough
.CarefulInd: db "<NEXT>" ; fallthrough
.MildInd: db "<NEXT>" ; fallthrough
.BoldInd: db "↓<NEXT>↑@"
.QuietInd: db "<NEXT>" ; fallthrough
.LaxInd: db "<NEXT>" ; fallthrough
.AdamantInd: db "↑<NEXT><NEXT>↓@"
.JollyInd: db "<NEXT>" ; fallthrough
.GentleInd: db "<NEXT>" ; fallthrough
.ModestInd: db "↓<NEXT><NEXT>↑@"
.RelaxedInd: db "<NEXT>" ; fallthrough
.NaughtyInd: db "↑<NEXT><NEXT><NEXT>↓@"
.HastyInd: db "<NEXT>" ; fallthrough
.CalmInd: db "↓<NEXT><NEXT><NEXT>↑@"
.BraveInd: db "↑<NEXT><NEXT><NEXT><NEXT>↓@"
.TimidInd: db "↓<NEXT><NEXT><NEXT><NEXT>↑" ; fallthrough
.HardyInd:
.DocileInd:
.SeriousInd:
.BashfulInd:
.QuirkyInd:
.NoNatureInd: db "@"