-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheasygard.rb
193 lines (151 loc) · 3.1 KB
/
easygard.rb
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
require 'sinatra'
require_relative 'spells'
require_relative 'battlegames'
spells = Spells.new()
battlegames = Battlegames.new()
get '/' do
erb :home
end
get '/index.html' do
erb :home
end
get '/armor/' do
erb :armor
end
get '/combat/' do
erb :combat
end
get '/weapons/' do
erb :weapons
end
get '/shields/' do
erb :shields
end
get '/states/' do
erb :states
end
get '/reeves/' do
erb :reeves
end
get '/spells/' do
@allSpells = spells.allSpells()
erb :spells
end
get '/spells/all' do
@allSpells = spells.allSpells()
erb :"spells-all"
end
get '/spells/balls' do
@allSpells = spells.allSpells()
erb :"spells-balls"
end
get '/spells/definitions' do
@allSpells = spells.allSpells()
erb :"spells-definitions"
end
get '/spells/self' do
@allSpells = spells.allSpells()
erb :"spells-self"
end
get '/spells/touch' do
@allSpells = spells.allSpells()
erb :"spells-touch"
end
get '/spells/verbal' do
@allSpells = spells.allSpells()
erb :"spells-verbal"
end
get '/spells/archetype' do
@allSpells = spells.allSpells()
erb :"spells-archetype"
end
get '/spells/:letter' do
@reducedHash = spells.allSpells().reject {|k,v| k[0] != params[:letter]}
erb :"spell-byletter"
end
get '/battlegames/' do
erb :battlegames
end
get '/battlegames/all' do
@allBattlegames = battlegames.allBattlegames()
erb :"battlegames-all"
end
get '/battlegamesby/:letter' do
@reducedBattlegames = battlegames.allBattlegames().reject {|k,v| k[0] != params[:letter]}
erb :"battlegame-byletter"
end
get '/battlegames/class' do
@allBattlegames = battlegames.allBattlegames()
erb :"battlegames-class"
end
get '/battlegames/ditch' do
@allBattlegames = battlegames.allBattlegames()
erb :"battlegames-ditch"
end
get '/battlegames/militia' do
@allBattlegames = battlegames.allBattlegames()
erb :"battlegames-militia"
end
get '/enchantments/' do
@allSpells = spells.allSpells()
erb :enchantments
end
get '/enchantments/self' do
@allSpells = spells.allSpells()
erb :"enchantments-self"
end
get '/enchantments/all' do
@allSpells = spells.allSpells()
erb :"enchantments-all"
end
get '/enchantments/touch' do
@allSpells = spells.allSpells()
erb :"enchantments-touch"
end
get '/enchantments/protection' do
@allSpells = spells.allSpells()
erb :"enchantments-protection"
end
get '/enchantments/flame' do
@allSpells = spells.allSpells()
erb :"enchantments-flame"
end
get '/enchantments/death' do
@allSpells = spells.allSpells()
erb :"enchantments-death"
end
get '/enchantments/sorcery' do
@allSpells = spells.allSpells()
erb :"enchantments-sorcery"
end
get '/enchantments/spirit' do
@allSpells = spells.allSpells()
erb :"enchantments-spirit"
end
get '/enchantments/yellow' do
@allSpells = spells.allSpells()
erb :"enchantments-yellow"
end
get '/enchantments/white' do
@allSpells = spells.allSpells()
erb :"enchantments-white"
end
get '/enchantments/red' do
@allSpells = spells.allSpells()
erb :"enchantments-red"
end
get '/classes/' do
erb :classes
end
get '/about/' do
erb :about
end
get '/phoenixball/' do
erb :phoenixball
end
get '/codeofconduct/' do
erb :codeofconduct
end
get '/changes/' do
erb :changes
end