Conditions | 2 |
Paths | 2 |
Total Lines | 1392 |
Code Lines | 1351 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
55 | public function deliver_indexjson($gamefileid) |
||
56 | { |
||
57 | $index = PlayerIndexjson::whereGamefileId($gamefileid)->get(); |
||
58 | $gamefile = GamesFile::whereId($gamefileid)->first(); |
||
59 | $game = Game::whereId($gamefile->game_id)->first(); |
||
60 | $maker = '_'.$game->maker->short; |
||
61 | |||
62 | $res = []; |
||
63 | |||
64 | //Backdrops |
||
65 | $res['backdrop\/arena'] = 'rtp\/backdrop_arena.png'; |
||
66 | $res['backdrop\/barren'] = 'rtp\/backdrop_barren.png'; |
||
67 | $res['backdrop\/bath'] = 'rtp\/backdrop_bath.png'; |
||
68 | $res['backdrop\/beach'] = 'rtp\/backdrop_beach.png'; |
||
69 | $res['backdrop\/brickcave5'] = 'rtp\/backdrop_brickcave5.png'; |
||
70 | $res['backdrop\/bridge'] = 'rtp\/backdrop_bridge'.$maker.'.png'; |
||
71 | $res['backdrop\/building'] = 'rtp\/backdrop_building.png'; |
||
72 | $res['backdrop\/canyon'] = 'rtp\/backdrop_canyon.png'; |
||
73 | $res['backdrop\/castle'] = 'rtp\/backdrop_castle'.$maker.'.png'; |
||
74 | $res['backdrop\/cave1'] = 'rtp\/backdrop_cave1.png'; |
||
75 | $res['backdrop\/cave4'] = 'rtp\/backdrop_cave4.png'; |
||
76 | $res['backdrop\/cave9'] = 'rtp\/backdrop_cave9.png'; |
||
77 | $res['backdrop\/dark3'] = 'rtp\/backdrop_dark3.png'; |
||
78 | $res['backdrop\/desert'] = 'rtp\/backdrop_desert'.$maker.'.png'; |
||
79 | $res['backdrop\/desert5'] = 'rtp\/backdrop_desert5.png'; |
||
80 | $res['backdrop\/dungeon1'] = 'rtp\/backdrop_dungeon1'.$maker.'.png'; |
||
81 | $res['backdrop\/dungeon2'] = 'rtp\/backdrop_dungeon2'.$maker.'.png'; |
||
82 | $res['backdrop\/dungeon3'] = 'rtp\/backdrop_dungeon3.png'; |
||
83 | $res['backdrop\/dungeon4'] = 'rtp\/backdrop_dungeon4.png'; |
||
84 | $res['backdrop\/dungeon5'] = 'rtp\/backdrop_dungeon5.png'; |
||
85 | $res['backdrop\/dungeon6'] = 'rtp\/backdrop_dungeon6.png'; |
||
86 | $res['backdrop\/falls2'] = 'rtp\/backdrop_falls2.png'; |
||
87 | $res['backdrop\/forest1'] = 'rtp\/backdrop_forest1'.$maker.'.png'; |
||
88 | $res['backdrop\/forest2'] = 'rtp\/backdrop_forest2'.$maker.'.png'; |
||
89 | $res['backdrop\/forest4'] = 'rtp\/backdrop_forest4.png'; |
||
90 | $res['backdrop\/future1'] = 'rtp\/backdrop_future1.png'; |
||
91 | $res['backdrop\/future3'] = 'rtp\/backdrop_future3.png'; |
||
92 | $res['backdrop\/galaxy'] = 'rtp\/backdrop_galaxy.png'; |
||
93 | $res['backdrop\/ghost_town'] = 'rtp\/backdrop_ghost_town.png'; |
||
94 | $res['backdrop\/grass'] = 'rtp\/backdrop_grass.png'; |
||
95 | $res['backdrop\/graveyard'] = 'rtp\/backdrop_graveyard.png'; |
||
96 | $res['backdrop\/greece'] = 'rtp\/backdrop_greece.png'; |
||
97 | $res['backdrop\/icecave3'] = 'rtp\/backdrop_icecave3.png'; |
||
98 | $res['backdrop\/lavacave2'] = 'rtp\/backdrop_lavacave2.png'; |
||
99 | $res['backdrop\/lightspeed'] = 'rtp\/backdrop_lightspeed.png'; |
||
100 | $res['backdrop\/mountain'] = 'rtp\/backdrop_mountain.png'; |
||
101 | $res['backdrop\/mtn4'] = 'rtp\/backdrop_mtn4.png'; |
||
102 | $res['backdrop\/nbridge'] = 'rtp\/backdrop_nbridge.png'; |
||
103 | $res['backdrop\/ocean'] = 'rtp\/backdrop_ocean.png'; |
||
104 | $res['backdrop\/plains'] = 'rtp\/backdrop_plains.png'; |
||
105 | $res['backdrop\/plainsg'] = 'rtp\/backdrop_plainsg.png'; |
||
106 | $res['backdrop\/road'] = 'rtp\/backdrop_road.png'; |
||
107 | $res['backdrop\/rockbed'] = 'rtp\/backdrop_rockbed.png'; |
||
108 | $res['backdrop\/ruins1'] = 'rtp\/backdrop_ruins1.png'; |
||
109 | $res['backdrop\/ruins2'] = 'rtp\/backdrop_ruins2.png'; |
||
110 | $res['backdrop\/sea'] = 'rtp\/backdrop_sea.png'; |
||
111 | $res['backdrop\/seabeach'] = 'rtp\/backdrop_seabeach.png'; |
||
112 | $res['backdrop\/ship'] = 'rtp\/backdrop_ship.png'; |
||
113 | $res['backdrop\/ship1'] = 'rtp\/backdrop_ship1.png'; |
||
114 | $res['backdrop\/shipdeck'] = 'rtp\/backdrop_shipdeck.png'; |
||
115 | $res['backdrop\/shrine'] = 'rtp\/backdrop_shrine.png'; |
||
116 | $res['backdrop\/sky'] = 'rtp\/backdrop_sky'.$maker.'.png'; |
||
117 | $res['backdrop\/snow'] = 'rtp\/backdrop_snow.png'; |
||
118 | $res['backdrop\/snowcanyon'] = 'rtp\/backdrop_snowcanyon.png'; |
||
119 | $res['backdrop\/snowfield'] = 'rtp\/backdrop_snowfield.png'; |
||
120 | $res['backdrop\/space'] = 'rtp\/backdrop_space.png'; |
||
121 | $res['backdrop\/strange'] = 'rtp\/backdrop_strange.png'; |
||
122 | $res['backdrop\/swamp'] = 'rtp\/backdrop_swamp'.$maker.'.png'; |
||
123 | $res['backdrop\/town'] = 'rtp\/backdrop_town'.$maker.'.png'; |
||
124 | $res['backdrop\/underw1'] = 'rtp\/backdrop_underw1.png'; |
||
125 | $res['backdrop\/wasteland'] = 'rtp\/backdrop_wasteland'.$maker.'.png'; |
||
126 | $res['backdrop\/wasteruins'] = 'rtp\/backdrop_wasteruins.png'; |
||
127 | $res['backdrop\/'] = 'rtp\/backdrop_.png'; |
||
128 | |||
129 | //Battles |
||
130 | $res['battle\/absorb1'] = 'rtp\/backdrop_absorb1.png'; |
||
131 | $res['battle\/absorb2'] = 'rtp\/backdrop_absorb2.png'; |
||
132 | $res['battle\/absorption'] = 'rtp\/backdrop_absorption.png'; |
||
133 | $res['battle\/arrow'] = 'rtp\/backdrop_arrow.png'; |
||
134 | $res['battle\/attack'] = 'rtp\/backdrop_attack.png'; |
||
135 | $res['battle\/axe'] = 'rtp\/backdrop_axe.png'; |
||
136 | $res['battle\/axe1'] = 'rtp\/backdrop_axe1.png'; |
||
137 | $res['battle\/axe2'] = 'rtp\/backdrop_axe2.png'; |
||
138 | $res['battle\/barrier'] = 'rtp\/backdrop_barrier.png'; |
||
139 | $res['battle\/barrier1'] = 'rtp\/backdrop_barrier1.png'; |
||
140 | $res['battle\/barrier2'] = 'rtp\/backdrop_barrier2.png'; |
||
141 | $res['battle\/bolt1'] = 'rtp\/backdrop_bolt1.png'; |
||
142 | $res['battle\/bolt2'] = 'rtp\/backdrop_bolt2.png'; |
||
143 | $res['battle\/bow1'] = 'rtp\/backdrop_bow1.png'; |
||
144 | $res['battle\/bow2'] = 'rtp\/backdrop_bow2.png'; |
||
145 | $res['battle\/breath1'] = 'rtp\/backdrop_breath1.png'; |
||
146 | $res['battle\/breath2'] = 'rtp\/backdrop_breath2.png'; |
||
147 | $res['battle\/claw1'] = 'rtp\/backdrop_claw1.png'; |
||
148 | $res['battle\/claw2'] = 'rtp\/backdrop_claw2.png'; |
||
149 | $res['battle\/cold'] = 'rtp\/backdrop_cold.png'; |
||
150 | $res['battle\/cure1'] = 'rtp\/backdrop_cure1.png'; |
||
151 | $res['battle\/cure2'] = 'rtp\/backdrop_cure2.png'; |
||
152 | $res['battle\/dark'] = 'rtp\/backdrop_dark.png'; |
||
153 | $res['battle\/dark1'] = 'rtp\/backdrop_dark1.png'; |
||
154 | $res['battle\/dark2'] = 'rtp\/backdrop_dark2.png'; |
||
155 | $res['battle\/decrease'] = 'rtp\/backdrop_decrease.png'; |
||
156 | $res['battle\/down'] = 'rtp\/backdrop_down.png'; |
||
157 | $res['battle\/earth'] = 'rtp\/backdrop_earth.png'; |
||
158 | $res['battle\/earth1'] = 'rtp\/backdrop_earth1.png'; |
||
159 | $res['battle\/earth2'] = 'rtp\/backdrop_earth2.png'; |
||
160 | $res['battle\/enemyhp'] = 'rtp\/backdrop_enemyhp.png'; |
||
161 | $res['battle\/etc'] = 'rtp\/backdrop_etc.png'; |
||
162 | $res['battle\/explode1'] = 'rtp\/backdrop_explode1.png'; |
||
163 | $res['battle\/explode2'] = 'rtp\/backdrop_explode2.png'; |
||
164 | $res['battle\/explosion'] = 'rtp\/backdrop_explosion.png'; |
||
165 | $res['battle\/fang'] = 'rtp\/backdrop_fang.png'; |
||
166 | $res['battle\/fire1'] = 'rtp\/backdrop_fire1'.$maker.'.png'; |
||
167 | $res['battle\/fire2'] = 'rtp\/backdrop_fire2'.$maker.'.png'; |
||
168 | $res['battle\/fire3'] = 'rtp\/backdrop_fire3.png'; |
||
169 | $res['battle\/healing1'] = 'rtp\/backdrop_healing1.png'; |
||
170 | $res['battle\/healing2'] = 'rtp\/backdrop_healing2.png'; |
||
171 | $res['battle\/hit'] = 'rtp\/backdrop_hit.png'; |
||
172 | $res['battle\/holy'] = 'rtp\/backdrop_holy.png'; |
||
173 | $res['battle\/holy1'] = 'rtp\/backdrop_holy1.png'; |
||
174 | $res['battle\/holy2'] = 'rtp\/backdrop_holy2.png'; |
||
175 | $res['battle\/ice1'] = 'rtp\/backdrop_ice1.png'; |
||
176 | $res['battle\/ice2'] = 'rtp\/backdrop_ice2.png'; |
||
177 | $res['battle\/increase'] = 'rtp\/backdrop_increase.png'; |
||
178 | $res['battle\/lightray'] = 'rtp\/backdrop_lightray.png'; |
||
179 | $res['battle\/misc1'] = 'rtp\/backdrop_misc1.png'; |
||
180 | $res['battle\/misc2'] = 'rtp\/backdrop_misc2.png'; |
||
181 | $res['battle\/misc3'] = 'rtp\/backdrop_misc3.png'; |
||
182 | $res['battle\/paralysis'] = 'rtp\/backdrop_paralysis.png'; |
||
183 | $res['battle\/paralyze1'] = 'rtp\/backdrop_paralyze1.png'; |
||
184 | $res['battle\/paralyze2'] = 'rtp\/backdrop_paralyze2.png'; |
||
185 | $res['battle\/poison'] = 'rtp\/backdrop_poison.png'; |
||
186 | $res['battle\/qande'] = 'rtp\/backdrop_qande.png'; |
||
187 | $res['battle\/ray'] = 'rtp\/backdrop_ray.png'; |
||
188 | $res['battle\/revive1'] = 'rtp\/backdrop_revive1.png'; |
||
189 | $res['battle\/revive2'] = 'rtp\/backdrop_revive2.png'; |
||
190 | $res['battle\/spear'] = 'rtp\/backdrop_spear.png'; |
||
191 | $res['battle\/spear1'] = 'rtp\/backdrop_spear1.png'; |
||
192 | $res['battle\/spear2'] = 'rtp\/backdrop_spear2.png'; |
||
193 | $res['battle\/sphere'] = 'rtp\/backdrop_sphere.png'; |
||
194 | $res['battle\/strike'] = 'rtp\/backdrop_strike.png'; |
||
195 | $res['battle\/sun'] = 'rtp\/backdrop_sun.png'; |
||
196 | $res['battle\/sword1'] = 'rtp\/backdrop_sword1'.$maker.'.png'; |
||
197 | $res['battle\/sword2'] = 'rtp\/backdrop_sword2'.$maker.'.png'; |
||
198 | $res['battle\/sword3'] = 'rtp\/backdrop_sword3.png'; |
||
199 | $res['battle\/up'] = 'rtp\/backdrop_up.png'; |
||
200 | $res['battle\/water'] = 'rtp\/backdrop_water.png'; |
||
201 | $res['battle\/water1'] = 'rtp\/backdrop_water1.png'; |
||
202 | $res['battle\/water2'] = 'rtp\/backdrop_water2.png'; |
||
203 | $res['battle\/whip'] = 'rtp\/backdrop_whip.png'; |
||
204 | $res['battle\/whip1'] = 'rtp\/backdrop_whip1.png'; |
||
205 | $res['battle\/whip2'] = 'rtp\/backdrop_whip2.png'; |
||
206 | $res['battle\/wind'] = 'rtp\/backdrop_wind.png'; |
||
207 | $res['battle\/wind1'] = 'rtp\/backdrop_wind1.png'; |
||
208 | $res['battle\/wind2'] = 'rtp\/backdrop_wind2.png'; |
||
209 | $res['battle\/zip'] = 'rtp\/backdrop_zip.png'; |
||
210 | $res['battle\/'] = 'rtp\/backdrop_.png'; |
||
211 | |||
212 | //battlecharset |
||
213 | $res['battlecharset\/armor1'] = 'rtp\/battlecharset_armor1.png'; |
||
214 | $res['battlecharset\/armor2'] = 'rtp\/battlecharset_armor2.png'; |
||
215 | $res['battlecharset\/chinese-f-1'] = 'rtp\/battlecharset_chinese-f-1.png'; |
||
216 | $res['battlecharset\/chinese-f-2'] = 'rtp\/battlecharset_chinese-f-2.png'; |
||
217 | $res['battlecharset\/chinese-m-1'] = 'rtp\/battlecharset_chinese-m-1.png'; |
||
218 | $res['battlecharset\/chinese-m-2'] = 'rtp\/battlecharset_chinese-m-2.png'; |
||
219 | $res['battlecharset\/elf-f-1'] = 'rtp\/battlecharset_elf-f-1.png'; |
||
220 | $res['battlecharset\/elf-f-2'] = 'rtp\/battlecharset_elf-f-2.png'; |
||
221 | $res['battlecharset\/elf-m-1'] = 'rtp\/battlecharset_elf-m-1.png'; |
||
222 | $res['battlecharset\/elf-m-2'] = 'rtp\/battlecharset_elf-m-2.png'; |
||
223 | $res['battlecharset\/hero-f-1'] = 'rtp\/battlecharset_hero-f-1.png'; |
||
224 | $res['battlecharset\/hero-f-2'] = 'rtp\/battlecharset_hero-f-2.png'; |
||
225 | $res['battlecharset\/hero-m-1'] = 'rtp\/battlecharset_hero-m-1.png'; |
||
226 | $res['battlecharset\/hero-m-2'] = 'rtp\/battlecharset_hero-m-2.png'; |
||
227 | $res['battlecharset\/mage-f-1'] = 'rtp\/battlecharset_mage-f-1.png'; |
||
228 | $res['battlecharset\/mage-f-2'] = 'rtp\/battlecharset_mage-f-2.png'; |
||
229 | $res['battlecharset\/mage-m-1'] = 'rtp\/battlecharset_mage-m-1.png'; |
||
230 | $res['battlecharset\/mage-m-2'] = 'rtp\/battlecharset_mage-m-2.png'; |
||
231 | $res['battlecharset\/man1-1'] = 'rtp\/battlecharset_man1-1.png'; |
||
232 | $res['battlecharset\/man1-2'] = 'rtp\/battlecharset_man1-2.png'; |
||
233 | $res['battlecharset\/man2-1'] = 'rtp\/battlecharset_man2-1.png'; |
||
234 | $res['battlecharset\/man2-2'] = 'rtp\/battlecharset_man2-2.png'; |
||
235 | $res['battlecharset\/man3-1'] = 'rtp\/battlecharset_man3-1.png'; |
||
236 | $res['battlecharset\/man3-2'] = 'rtp\/battlecharset_man3-2.png'; |
||
237 | $res['battlecharset\/man4-1'] = 'rtp\/battlecharset_man4-1.png'; |
||
238 | $res['battlecharset\/man4-2'] = 'rtp\/battlecharset_man4-2.png'; |
||
239 | $res['battlecharset\/man5-1'] = 'rtp\/battlecharset_man5-1.png'; |
||
240 | $res['battlecharset\/man5-2'] = 'rtp\/battlecharset_man5-2.png'; |
||
241 | $res['battlecharset\/monk-f-1'] = 'rtp\/battlecharset_monk-f-1.png'; |
||
242 | $res['battlecharset\/monk-f-2'] = 'rtp\/battlecharset_monk-f-2.png'; |
||
243 | $res['battlecharset\/monk-m-1'] = 'rtp\/battlecharset_monk-m-1.png'; |
||
244 | $res['battlecharset\/monk-m-2'] = 'rtp\/battlecharset_monk-m-2.png'; |
||
245 | $res['battlecharset\/ninja-f-1'] = 'rtp\/battlecharset_ninja-f-1.png'; |
||
246 | $res['battlecharset\/ninja-f-2'] = 'rtp\/battlecharset_ninja-f-2.png'; |
||
247 | $res['battlecharset\/ninja-m-1'] = 'rtp\/battlecharset_ninja-m-1.png'; |
||
248 | $res['battlecharset\/ninja-m-2'] = 'rtp\/battlecharset_ninja-m-2.png'; |
||
249 | $res['battlecharset\/pirate-f-1'] = 'rtp\/battlecharset_pirate-f-1.png'; |
||
250 | $res['battlecharset\/pirate-f-2'] = 'rtp\/battlecharset_pirate-f-2.png'; |
||
251 | $res['battlecharset\/pirate-m-1'] = 'rtp\/battlecharset_pirate-m-1.png'; |
||
252 | $res['battlecharset\/pirate-m-2'] = 'rtp\/battlecharset_pirate-m-2.png'; |
||
253 | $res['battlecharset\/priest1'] = 'rtp\/battlecharset_priest1.png'; |
||
254 | $res['battlecharset\/priest2'] = 'rtp\/battlecharset_priest2.png'; |
||
255 | $res['battlecharset\/priestess1'] = 'rtp\/battlecharset_priestess1.png'; |
||
256 | $res['battlecharset\/priestess2'] = 'rtp\/battlecharset_priestess2.png'; |
||
257 | $res['battlecharset\/samurai1'] = 'rtp\/battlecharset_samurai1.png'; |
||
258 | $res['battlecharset\/samurai2'] = 'rtp\/battlecharset_samurai2.png'; |
||
259 | $res['battlecharset\/soldier-f-1'] = 'rtp\/battlecharset_soldier-f-1.png'; |
||
260 | $res['battlecharset\/soldier-f-2'] = 'rtp\/battlecharset_soldier-f-2.png'; |
||
261 | $res['battlecharset\/soldier-m-1'] = 'rtp\/battlecharset_soldier-m-1.png'; |
||
262 | $res['battlecharset\/soldier-m-2'] = 'rtp\/battlecharset_soldier-m-2.png'; |
||
263 | $res['battlecharset\/thief-f-1'] = 'rtp\/battlecharset_thief-f-1.png'; |
||
264 | $res['battlecharset\/thief-f-2'] = 'rtp\/battlecharset_thief-f-2.png'; |
||
265 | $res['battlecharset\/thief-m-1'] = 'rtp\/battlecharset_thief-m-1.png'; |
||
266 | $res['battlecharset\/thief-m-2'] = 'rtp\/battlecharset_thief-m-2.png'; |
||
267 | $res['battlecharset\/woman1-1'] = 'rtp\/battlecharset_woman1-1.png'; |
||
268 | $res['battlecharset\/woman1-2'] = 'rtp\/battlecharset_woman1-2.png'; |
||
269 | $res['battlecharset\/woman2-1'] = 'rtp\/battlecharset_woman2-1.png'; |
||
270 | $res['battlecharset\/woman2-2'] = 'rtp\/battlecharset_woman2-2.png'; |
||
271 | $res['battlecharset\/woman3-1'] = 'rtp\/battlecharset_woman3-1.png'; |
||
272 | $res['battlecharset\/woman3-2'] = 'rtp\/battlecharset_woman3-2.png'; |
||
273 | $res['battlecharset\/woman4-1'] = 'rtp\/battlecharset_woman4-1.png'; |
||
274 | $res['battlecharset\/woman4-2'] = 'rtp\/battlecharset_woman4-2.png'; |
||
275 | $res['battlecharset\/woman5-1'] = 'rtp\/battlecharset_woman5-1.png'; |
||
276 | $res['battlecharset\/woman5-2'] = 'rtp\/battlecharset_woman5-2.png'; |
||
277 | $res['battlecharset\/'] = 'rtp\/battlecharset_.png'; |
||
278 | |||
279 | //BattleWeapon |
||
280 | $res['battleweapon\/weapons'] = 'rtp\/battleweapon_weapons.png'; |
||
281 | $res['battleweapon\/'] = 'rtp\/battleweapon_.png'; |
||
282 | |||
283 | //Charsets |
||
284 | $res['charset\/actraiser3.1'] = 'rtp\/charset_actraiser3.1.png'; |
||
285 | $res['charset\/african'] = 'rtp\/charset_african.png'; |
||
286 | $res['charset\/alex'] = 'rtp\/charset_alex.png'; |
||
287 | $res['charset\/alien3'] = 'rtp\/charset_alien3.png'; |
||
288 | $res['charset\/alien4'] = 'rtp\/charset_alien4.png'; |
||
289 | $res['charset\/angel'] = 'rtp\/charset_angel.png'; |
||
290 | $res['charset\/animal'] = 'rtp\/charset_animal'.$maker.'.png'; |
||
291 | $res['charset\/arquivo-x'] = 'rtp\/charset_arquivo-x.png'; |
||
292 | $res['charset\/bahamut_lagoon'] = 'rtp\/charset_bahamut_lagoon.png'; |
||
293 | $res['charset\/bartender'] = 'rtp\/charset_bartender.png'; |
||
294 | $res['charset\/bloodydoors'] = 'rtp\/charset_bloodydoors.png'; |
||
295 | $res['charset\/brats01'] = 'rtp\/charset_brats01.png'; |
||
296 | $res['charset\/breathoffire4'] = 'rtp\/charset_breathoffire4.png'; |
||
297 | $res['charset\/brian'] = 'rtp\/charset_brian.png'; |
||
298 | $res['charset\/char1'] = 'rtp\/charset_char1.png'; |
||
299 | $res['charset\/char2'] = 'rtp\/charset_char2.png'; |
||
300 | $res['charset\/char3'] = 'rtp\/charset_char3.png'; |
||
301 | $res['charset\/char4'] = 'rtp\/charset_char4.png'; |
||
302 | $res['charset\/char5'] = 'rtp\/charset_char5.png'; |
||
303 | $res['charset\/chara_c1'] = 'rtp\/charset_chara_c1.png'; |
||
304 | $res['charset\/chara_c2'] = 'rtp\/charset_chara_c2.png'; |
||
305 | $res['charset\/chara_h_9'] = 'rtp\/charset_chara_h_9.png'; |
||
306 | $res['charset\/chara_misc_1'] = 'rtp\/charset_chara_misc_1.png'; |
||
307 | $res['charset\/chara01'] = 'rtp\/charset_chara01.png'; |
||
308 | $res['charset\/chara02'] = 'rtp\/charset_chara02.png'; |
||
309 | $res['charset\/chara03'] = 'rtp\/charset_chara03.png'; |
||
310 | $res['charset\/chara04'] = 'rtp\/charset_chara04.png'; |
||
311 | $res['charset\/chara05'] = 'rtp\/charset_chara05.png'; |
||
312 | $res['charset\/chara06'] = 'rtp\/charset_chara06.png'; |
||
313 | $res['charset\/chara07'] = 'rtp\/charset_chara07.png'; |
||
314 | $res['charset\/chara08'] = 'rtp\/charset_chara08.png'; |
||
315 | $res['charset\/chara09'] = 'rtp\/charset_chara09.png'; |
||
316 | $res['charset\/chara1'] = 'rtp\/charset_chara1.png'; |
||
317 | $res['charset\/chara10'] = 'rtp\/charset_chara10.png'; |
||
318 | $res['charset\/chara11'] = 'rtp\/charset_chara11.png'; |
||
319 | $res['charset\/chara12'] = 'rtp\/charset_chara12.png'; |
||
320 | $res['charset\/chara13'] = 'rtp\/charset_chara13.png'; |
||
321 | $res['charset\/chara14'] = 'rtp\/charset_chara14.png'; |
||
322 | $res['charset\/chara15'] = 'rtp\/charset_chara15.png'; |
||
323 | $res['charset\/chara16'] = 'rtp\/charset_chara16.png'; |
||
324 | $res['charset\/chara2'] = 'rtp\/charset_chara2.png'; |
||
325 | $res['charset\/chara3'] = 'rtp\/charset_chara3.png'; |
||
326 | $res['charset\/chara4'] = 'rtp\/charset_chara4.png'; |
||
327 | $res['charset\/chara6gold'] = 'rtp\/charset_chara6gold.png'; |
||
328 | $res['charset\/charaa1'] = 'rtp\/charset_charaa1.png'; |
||
329 | $res['charset\/charaa2'] = 'rtp\/charset_charaa2.png'; |
||
330 | $res['charset\/chubby1'] = 'rtp\/charset_chubby1.png'; |
||
331 | $res['charset\/chubby2'] = 'rtp\/charset_chubby2.png'; |
||
332 | $res['charset\/chubby2b'] = 'rtp\/charset_chubby2b.png'; |
||
333 | $res['charset\/crosshairandtargets'] = 'rtp\/charset_crosshairandtargets.png'; |
||
334 | $res['charset\/crown1'] = 'rtp\/charset_crown1.png'; |
||
335 | $res['charset\/crown2'] = 'rtp\/charset_crown2.png'; |
||
336 | $res['charset\/crown3'] = 'rtp\/charset_crown3.png'; |
||
337 | $res['charset\/crown4'] = 'rtp\/charset_crown4.png'; |
||
338 | $res['charset\/crown5'] = 'rtp\/charset_crown5.png'; |
||
339 | $res['charset\/crown6'] = 'rtp\/charset_crown6.png'; |
||
340 | $res['charset\/crown7'] = 'rtp\/charset_crown7.png'; |
||
341 | $res['charset\/crystals'] = 'rtp\/charset_crystals.png'; |
||
342 | $res['charset\/ctchar'] = 'rtp\/charset_ctchar.png'; |
||
343 | $res['charset\/ctportal'] = 'rtp\/charset_ctportal.png'; |
||
344 | $res['charset\/dbz_chara1'] = 'rtp\/charset_dbz_chara1.png'; |
||
345 | $res['charset\/dbz_chara2'] = 'rtp\/charset_dbz_chara2.png'; |
||
346 | $res['charset\/dbz_orig1'] = 'rtp\/charset_dbz_orig1.png'; |
||
347 | $res['charset\/don_chara1'] = 'rtp\/charset_don_chara1.png'; |
||
348 | $res['charset\/don_collection_1'] = 'rtp\/charset_don_collection_1.png'; |
||
349 | $res['charset\/don_collection_10'] = 'rtp\/charset_don_collection_10.png'; |
||
350 | $res['charset\/don_collection_11'] = 'rtp\/charset_don_collection_11.png'; |
||
351 | $res['charset\/don_collection_12'] = 'rtp\/charset_don_collection_12.png'; |
||
352 | $res['charset\/don_collection_13'] = 'rtp\/charset_don_collection_13.png'; |
||
353 | $res['charset\/don_collection_14'] = 'rtp\/charset_don_collection_14.png'; |
||
354 | $res['charset\/don_collection_15'] = 'rtp\/charset_don_collection_15.png'; |
||
355 | $res['charset\/don_collection_16'] = 'rtp\/charset_don_collection_16.png'; |
||
356 | $res['charset\/don_collection_17'] = 'rtp\/charset_don_collection_17.png'; |
||
357 | $res['charset\/don_collection_18'] = 'rtp\/charset_don_collection_18.png'; |
||
358 | $res['charset\/don_collection_19'] = 'rtp\/charset_don_collection_19.png'; |
||
359 | $res['charset\/don_collection_2'] = 'rtp\/charset_don_collection_2.png'; |
||
360 | $res['charset\/don_collection_20'] = 'rtp\/charset_don_collection_20.png'; |
||
361 | $res['charset\/don_collection_21'] = 'rtp\/charset_don_collection_21.png'; |
||
362 | $res['charset\/don_collection_22'] = 'rtp\/charset_don_collection_22.png'; |
||
363 | $res['charset\/don_collection_23'] = 'rtp\/charset_don_collection_23.png'; |
||
364 | $res['charset\/don_collection_24'] = 'rtp\/charset_don_collection_24.png'; |
||
365 | $res['charset\/don_collection_25'] = 'rtp\/charset_don_collection_25.png'; |
||
366 | $res['charset\/don_collection_26'] = 'rtp\/charset_don_collection_26.png'; |
||
367 | $res['charset\/don_collection_27'] = 'rtp\/charset_don_collection_27.png'; |
||
368 | $res['charset\/don_collection_28'] = 'rtp\/charset_don_collection_28.png'; |
||
369 | $res['charset\/don_collection_3'] = 'rtp\/charset_don_collection_3.png'; |
||
370 | $res['charset\/don_collection_4'] = 'rtp\/charset_don_collection_4.png'; |
||
371 | $res['charset\/don_collection_5'] = 'rtp\/charset_don_collection_5.png'; |
||
372 | $res['charset\/don_collection_6'] = 'rtp\/charset_don_collection_6.png'; |
||
373 | $res['charset\/don_collection_7'] = 'rtp\/charset_don_collection_7.png'; |
||
374 | $res['charset\/don_collection_8'] = 'rtp\/charset_don_collection_8.png'; |
||
375 | $res['charset\/don_collection_9'] = 'rtp\/charset_don_collection_9.png'; |
||
376 | $res['charset\/don_collection_mm'] = 'rtp\/charset_don_collection_mm.png'; |
||
377 | $res['charset\/don_fish'] = 'rtp\/charset_don_fish.png'; |
||
378 | $res['charset\/don_pikatchuu'] = 'rtp\/charset_don_pikatchuu.png'; |
||
379 | $res['charset\/pokeballz'] = 'rtp\/charset_pokeballz.png'; |
||
380 | $res['charset\/xfiles'] = 'rtp\/charset_xfiles.png'; |
||
381 | $res['charset\/earthbound1'] = 'rtp\/charset_earthbound1.png'; |
||
382 | $res['charset\/earthbound2'] = 'rtp\/charset_earthbound2.png'; |
||
383 | $res['charset\/earthbound3'] = 'rtp\/charset_earthbound3.png'; |
||
384 | $res['charset\/earthboundsheet'] = 'rtp\/charset_earthboundsheet.png'; |
||
385 | $res['charset\/edit1'] = 'rtp\/charset_edit1.png'; |
||
386 | $res['charset\/agyptian'] = 'rtp\/charset_agyptian.png'; |
||
387 | $res['charset\/eskimo'] = 'rtp\/charset_eskimo.png'; |
||
388 | $res['charset\/evil1'] = 'rtp\/charset_evil1.png'; |
||
389 | $res['charset\/expression'] = 'rtp\/charset_expression.png'; |
||
390 | $res['charset\/ff3_soldiers'] = 'rtp\/charset_ff3_soldiers.png'; |
||
391 | $res['charset\/ff7_chara1'] = 'rtp\/charset_ff7_chara1.png'; |
||
392 | $res['charset\/ff83'] = 'rtp\/charset_ff83.png'; |
||
393 | $res['charset\/ff9chara'] = 'rtp\/charset_ff9chara.png'; |
||
394 | $res['charset\/fft_archers'] = 'rtp\/charset_fft_archers.png'; |
||
395 | $res['charset\/fft_thieves'] = 'rtp\/charset_fft_thieves.png'; |
||
396 | $res['charset\/flags_n_chests'] = 'rtp\/charset_flags_n_chests.png'; |
||
397 | $res['charset\/free01'] = 'rtp\/charset_free01.png'; |
||
398 | $res['charset\/free02'] = 'rtp\/charset_free02.png'; |
||
399 | $res['charset\/free03'] = 'rtp\/charset_free03.png'; |
||
400 | $res['charset\/free04'] = 'rtp\/charset_free04.png'; |
||
401 | $res['charset\/future_soldiers1'] = 'rtp\/charset_future_soldiers1.png'; |
||
402 | $res['charset\/future1'] = 'rtp\/charset_future1.png'; |
||
403 | $res['charset\/future2'] = 'rtp\/charset_future2.png'; |
||
404 | $res['charset\/future3'] = 'rtp\/charset_future3.png'; |
||
405 | $res['charset\/fx_chara16'] = 'rtp\/charset_fx_chara16.png'; |
||
406 | $res['charset\/gohanssj1-2'] = 'rtp\/charset_gohanssj1-2.png'; |
||
407 | $res['charset\/goldendoors'] = 'rtp\/charset_goldendoors.png'; |
||
408 | $res['charset\/greece'] = 'rtp\/charset_greece.png'; |
||
409 | $res['charset\/hero1'] = 'rtp\/charset_hero1.png'; |
||
410 | $res['charset\/hero2'] = 'rtp\/charset_hero2.png'; |
||
411 | $res['charset\/hero3'] = 'rtp\/charset_hero3.png'; |
||
412 | $res['charset\/hero4'] = 'rtp\/charset_hero4.png'; |
||
413 | $res['charset\/houshin5'] = 'rtp\/charset_houshin5.png'; |
||
414 | $res['charset\/illustset1'] = 'rtp\/charset_illustset1.png'; |
||
415 | $res['charset\/islander'] = 'rtp\/charset_islander.png'; |
||
416 | $res['charset\/items_1'] = 'rtp\/charset_items_1.png'; |
||
417 | $res['charset\/items_2'] = 'rtp\/charset_items_2.png'; |
||
418 | $res['charset\/items_3'] = 'rtp\/charset_items_3.png'; |
||
419 | $res['charset\/link'] = 'rtp\/charset_link.png'; |
||
420 | $res['charset\/linofull'] = 'rtp\/charset_linofull.png'; |
||
421 | $res['charset\/mario'] = 'rtp\/charset_mario.png'; |
||
422 | $res['charset\/megaman1'] = 'rtp\/charset_megaman1.png'; |
||
423 | $res['charset\/men1'] = 'rtp\/charset_men1.png'; |
||
424 | $res['charset\/minato_c'] = 'rtp\/charset_minato_c.png'; |
||
425 | $res['charset\/mk'] = 'rtp\/charset_mk.png'; |
||
426 | $res['charset\/mohawk'] = 'rtp\/charset_mohawk.png'; |
||
427 | $res['charset\/monster1'] = 'rtp\/charset_monster1'.$maker.'.png'; |
||
428 | $res['charset\/monster2'] = 'rtp\/charset_monster2'.$maker.'.png'; |
||
429 | $res['charset\/newaya'] = 'rtp\/charset_newaya.png'; |
||
430 | $res['charset\/object1'] = 'rtp\/charset_object1'.$maker.'.png'; |
||
431 | $res['charset\/object2'] = 'rtp\/charset_object2'.$maker.'.png'; |
||
432 | $res['charset\/object3'] = 'rtp\/charset_object3.png'; |
||
433 | $res['charset\/object6'] = 'rtp\/charset_object6.png'; |
||
434 | $res['charset\/object9'] = 'rtp\/charset_object9.png'; |
||
435 | $res['charset\/objecta'] = 'rtp\/charset_objecta.png'; |
||
436 | $res['charset\/objectb'] = 'rtp\/charset_objectb.png'; |
||
437 | $res['charset\/objectc'] = 'rtp\/charset_objectc.png'; |
||
438 | $res['charset\/objectd'] = 'rtp\/charset_objectd.png'; |
||
439 | $res['charset\/objecte'] = 'rtp\/charset_objecte.png'; |
||
440 | $res['charset\/objectf'] = 'rtp\/charset_objectf.png'; |
||
441 | $res['charset\/objectg'] = 'rtp\/charset_objectg.png'; |
||
442 | $res['charset\/objecth'] = 'rtp\/charset_objecth.png'; |
||
443 | $res['charset\/objecti'] = 'rtp\/charset_objecti.png'; |
||
444 | $res['charset\/objectj'] = 'rtp\/charset_objectj.png'; |
||
445 | $res['charset\/objectk'] = 'rtp\/charset_objectk.png'; |
||
446 | $res['charset\/objectl'] = 'rtp\/charset_objectl.png'; |
||
447 | $res['charset\/objects3'] = 'rtp\/charset_objects3.png'; |
||
448 | $res['charset\/omek'] = 'rtp\/charset_omek.png'; |
||
449 | $res['charset\/patrick'] = 'rtp\/charset_patrick.png'; |
||
450 | $res['charset\/people1'] = 'rtp\/charset_people1.png'; |
||
451 | $res['charset\/people3'] = 'rtp\/charset_people3.png'; |
||
452 | $res['charset\/people4'] = 'rtp\/charset_people4.png'; |
||
453 | $res['charset\/people5'] = 'rtp\/charset_people5.png'; |
||
454 | $res['charset\/people7'] = 'rtp\/charset_people7.png'; |
||
455 | $res['charset\/pirate'] = 'rtp\/charset_pirate.png'; |
||
456 | $res['charset\/pose'] = 'rtp\/charset_pose.png'; |
||
457 | $res['charset\/pose19'] = 'rtp\/charset_pose19.png'; |
||
458 | $res['charset\/pose2'] = 'rtp\/charset_pose2.png'; |
||
459 | $res['charset\/pose3'] = 'rtp\/charset_pose3.png'; |
||
460 | $res['charset\/poses_kirby_dolphin'] = 'rtp\/charset_poses_kirby_dolphin.png'; |
||
461 | $res['charset\/pw_chara'] = 'rtp\/charset_pw_chara.png'; |
||
462 | $res['charset\/robot'] = 'rtp\/charset_robot.png'; |
||
463 | $res['charset\/robots1'] = 'rtp\/charset_robots1.png'; |
||
464 | $res['charset\/rolf\'sarmy1'] = 'rtp\/charset_rolf\'sarmy1.png'; |
||
465 | $res['charset\/rolf\'sarmy2'] = 'rtp\/charset_rolf\'sarmy2.png'; |
||
466 | $res['charset\/rs3_1'] = 'rtp\/charset_rs3_1.png'; |
||
467 | $res['charset\/sailermoon1'] = 'rtp\/charset_sailermoon1.png'; |
||
468 | $res['charset\/savepoint'] = 'rtp\/charset_savepoint.png'; |
||
469 | $res['charset\/set_ggi1'] = 'rtp\/charset_set_ggi1.png'; |
||
470 | $res['charset\/set_hei1'] = 'rtp\/charset_set_hei1.png'; |
||
471 | $res['charset\/set_ipa1'] = 'rtp\/charset_set_ipa1.png'; |
||
472 | $res['charset\/set_ipa2'] = 'rtp\/charset_set_ipa2.png'; |
||
473 | $res['charset\/set_ken1'] = 'rtp\/charset_set_ken1.png'; |
||
474 | $res['charset\/set_mon1'] = 'rtp\/charset_set_mon1.png'; |
||
475 | $res['charset\/simchara'] = 'rtp\/charset_simchara.png'; |
||
476 | $res['charset\/simpsons'] = 'rtp\/charset_simpsons.png'; |
||
477 | $res['charset\/slime1'] = 'rtp\/charset_slime1.png'; |
||
478 | $res['charset\/slime2'] = 'rtp\/charset_slime2.png'; |
||
479 | $res['charset\/soldiers'] = 'rtp\/charset_soldiers.png'; |
||
480 | $res['charset\/soldiers_brats'] = 'rtp\/charset_soldiers_brats.png'; |
||
481 | $res['charset\/sparkleitems_1'] = 'rtp\/charset_sparkleitems_1.png'; |
||
482 | $res['charset\/sparkleitems_2'] = 'rtp\/charset_sparkleitems_2.png'; |
||
483 | $res['charset\/sparkleitems_3'] = 'rtp\/charset_sparkleitems_3.png'; |
||
484 | $res['charset\/sparkleitems_4'] = 'rtp\/charset_sparkleitems_4.png'; |
||
485 | $res['charset\/ss4gku_futrbulma'] = 'rtp\/charset_ss4gku_futrbulma.png'; |
||
486 | $res['charset\/starc1'] = 'rtp\/charset_starc1.png'; |
||
487 | $res['charset\/starwar1'] = 'rtp\/charset_starwar1.png'; |
||
488 | $res['charset\/starwar2'] = 'rtp\/charset_starwar2.png'; |
||
489 | $res['charset\/sv'] = 'rtp\/charset_sv.png'; |
||
490 | $res['charset\/tenchi'] = 'rtp\/charset_tenchi.png'; |
||
491 | $res['charset\/torch'] = 'rtp\/charset_torch.png'; |
||
492 | $res['charset\/torch_1'] = 'rtp\/charset_torch_1.png'; |
||
493 | $res['charset\/treasure'] = 'rtp\/charset_treasure.png'; |
||
494 | $res['charset\/vegetable'] = 'rtp\/charset_vegetable.png'; |
||
495 | $res['charset\/vehicle'] = 'rtp\/charset_vehicle'.$maker.'.png'; |
||
496 | $res['charset\/vehicle3'] = 'rtp\/charset_vehicle3.png'; |
||
497 | $res['charset\/window'] = 'rtp\/charset_window.png'; |
||
498 | $res['charset\/wizard'] = 'rtp\/charset_wizard.png'; |
||
499 | $res['charset\/women1'] = 'rtp\/charset_women1.png'; |
||
500 | $res['charset\/x-files_lh'] = 'rtp\/charset_x-files_lh.png'; |
||
501 | $res['charset\/xfmainchars'] = 'rtp\/charset_xfmainchars.png'; |
||
502 | $res['charset\/xfmainchars2'] = 'rtp\/charset_xfmainchars2.png'; |
||
503 | $res['charset\/xmas_chara1'] = 'rtp\/charset_xmas_chara1.png'; |
||
504 | $res['charset\/x-men-movie'] = 'rtp\/charset_x-men-movie.png'; |
||
505 | $res['charset\/zlightup'] = 'rtp\/charset_zlightup.png'; |
||
506 | $res['charset\/'] = 'rtp\/charset_.png'; |
||
507 | |||
508 | //RM2k RTP |
||
509 | $res['chipset\/2ktownset'] = 'rtp\/chipset_2ktownset.png'; |
||
510 | $res['chipset\/3d_castle'] = 'rtp\/chipset_3d_castle.png'; |
||
511 | $res['chipset\/3d_inner'] = 'rtp\/chipset_3d_inner.png'; |
||
512 | $res['chipset\/3d_town'] = 'rtp\/chipset_3d_town.png'; |
||
513 | $res['chipset\/3d_town_'] = 'rtp\/chipset_3d_town_.png'; |
||
514 | $res['chipset\/air_ship'] = 'rtp\/chipset_air_ship.png'; |
||
515 | $res['chipset\/airship1'] = 'rtp\/chipset_airship1.png'; |
||
516 | $res['chipset\/airship2'] = 'rtp\/chipset_airship2.png'; |
||
517 | $res['chipset\/airship4'] = 'rtp\/chipset_airship4.png'; |
||
518 | $res['chipset\/army'] = 'rtp\/chipset_army.png'; |
||
519 | $res['chipset\/basis'] = 'rtp\/chipset_basis.png'; |
||
520 | $res['chipset\/bof'] = 'rtp\/chipset_bof.png'; |
||
521 | $res['chipset\/bof2'] = 'rtp\/chipset_bof2.png'; |
||
522 | $res['chipset\/bof22'] = 'rtp\/chipset_bof22.png'; |
||
523 | $res['chipset\/bof22_b'] = 'rtp\/chipset_bof22_b.png'; |
||
524 | $res['chipset\/boxing_r'] = 'rtp\/chipset_boxing_r.png'; |
||
525 | $res['chipset\/building'] = 'rtp\/chipset_building.png'; |
||
526 | $res['chipset\/casino'] = 'rtp\/chipset_casino.png'; |
||
527 | $res['chipset\/castle'] = 'rtp\/chipset_castle.png'; |
||
528 | $res['chipset\/castle_2_'] = 'rtp\/chipset_castle_2_.png'; |
||
529 | $res['chipset\/chipset_1'] = 'rtp\/chipset_chipset_1.png'; |
||
530 | $res['chipset\/chipset_2'] = 'rtp\/chipset_chipset_2.png'; |
||
531 | $res['chipset\/chipset_3'] = 'rtp\/chipset_chipset_3.png'; |
||
532 | $res['chipset\/chipset1'] = 'rtp\/chipset_chipset1.png'; |
||
533 | $res['chipset\/chipset10'] = 'rtp\/chipset_chipset10.png'; |
||
534 | $res['chipset\/chipset11'] = 'rtp\/chipset_chipset11.png'; |
||
535 | $res['chipset\/chipset11b'] = 'rtp\/chipset_chipset11b.png'; |
||
536 | $res['chipset\/chipset12'] = 'rtp\/chipset_chipset12.png'; |
||
537 | $res['chipset\/chipset13'] = 'rtp\/chipset_chipset13.png'; |
||
538 | $res['chipset\/chipset13b'] = 'rtp\/chipset_chipset13b.png'; |
||
539 | $res['chipset\/chipset14'] = 'rtp\/chipset_chipset14.png'; |
||
540 | $res['chipset\/chipset15'] = 'rtp\/chipset_chipset15.png'; |
||
541 | $res['chipset\/chipset17'] = 'rtp\/chipset_chipset17.png'; |
||
542 | $res['chipset\/chipset18'] = 'rtp\/chipset_chipset18.png'; |
||
543 | $res['chipset\/chipset19'] = 'rtp\/chipset_chipset19.png'; |
||
544 | $res['chipset\/chipset1old'] = 'rtp\/chipset_chipset1old.png'; |
||
545 | $res['chipset\/chipset2'] = 'rtp\/chipset_chipset2.png'; |
||
546 | $res['chipset\/chipset20'] = 'rtp\/chipset_chipset20.png'; |
||
547 | $res['chipset\/chipset2old'] = 'rtp\/chipset_chipset2old.png'; |
||
548 | $res['chipset\/chipset3'] = 'rtp\/chipset_chipset3.png'; |
||
549 | $res['chipset\/chipset4'] = 'rtp\/chipset_chipset4.png'; |
||
550 | $res['chipset\/chipset5'] = 'rtp\/chipset_chipset5.png'; |
||
551 | $res['chipset\/chipset5b'] = 'rtp\/chipset_chipset5b.png'; |
||
552 | $res['chipset\/chipset5c'] = 'rtp\/chipset_chipset5c.png'; |
||
553 | $res['chipset\/chipset6'] = 'rtp\/chipset_chipset6.png'; |
||
554 | $res['chipset\/chipset6b'] = 'rtp\/chipset_chipset6b.png'; |
||
555 | $res['chipset\/chipset6c'] = 'rtp\/chipset_chipset6c.png'; |
||
556 | $res['chipset\/chipset7'] = 'rtp\/chipset_chipset7.png'; |
||
557 | $res['chipset\/chipset8'] = 'rtp\/chipset_chipset8.png'; |
||
558 | $res['chipset\/chipset9'] = 'rtp\/chipset_chipset9.png'; |
||
559 | $res['chipset\/chronohouses'] = 'rtp\/chipset_chronohouses.png'; |
||
560 | $res['chipset\/darktown'] = 'rtp\/chipset_darktown.png'; |
||
561 | $res['chipset\/darkworld'] = 'rtp\/chipset_darkworld.png'; |
||
562 | $res['chipset\/dumalchipset01'] = 'rtp\/chipset_dumalchipset01.png'; |
||
563 | $res['chipset\/dungeon'] = 'rtp\/chipset_dungeon'.$maker.'.png'; |
||
564 | $res['chipset\/dungeon2'] = 'rtp\/chipset_dungeon2.png'; |
||
565 | $res['chipset\/dw3'] = 'rtp\/chipset_dw3.png'; |
||
566 | $res['chipset\/earthboundchips'] = 'rtp\/chipset_earthboundchips.png'; |
||
567 | $res['chipset\/earthboundchips_2'] = 'rtp\/chipset_earthboundchips_2.png'; |
||
568 | $res['chipset\/ebchip_00'] = 'rtp\/chipset_ebchip_00.png'; |
||
569 | $res['chipset\/ebinnerchips'] = 'rtp\/chipset_ebinnerchips.png'; |
||
570 | $res['chipset\/ff6'] = 'rtp\/chipset_ff6.png'; |
||
571 | $res['chipset\/ff6_airship'] = 'rtp\/chipset_ff6_airship.png'; |
||
572 | $res['chipset\/ff6_inner'] = 'rtp\/chipset_ff6_inner.png'; |
||
573 | $res['chipset\/ff6_town'] = 'rtp\/chipset_ff6_town.png'; |
||
574 | $res['chipset\/ff62'] = 'rtp\/chipset_ff62.png'; |
||
575 | $res['chipset\/forest'] = 'rtp\/chipset_forest.png'; |
||
576 | $res['chipset\/forest_t'] = 'rtp\/chipset_forest_t.png'; |
||
577 | $res['chipset\/future_i'] = 'rtp\/chipset_future_i.png'; |
||
578 | $res['chipset\/future_w'] = 'rtp\/chipset_future_w.png'; |
||
579 | $res['chipset\/golden1'] = 'rtp\/chipset_golden1.png'; |
||
580 | $res['chipset\/grey_cas'] = 'rtp\/chipset_grey_cas.png'; |
||
581 | $res['chipset\/hell'] = 'rtp\/chipset_hell.png'; |
||
582 | $res['chipset\/house'] = 'rtp\/chipset_house.png'; |
||
583 | $res['chipset\/house2'] = 'rtp\/chipset_house2.png'; |
||
584 | $res['chipset\/house3'] = 'rtp\/chipset_house3.png'; |
||
585 | $res['chipset\/house4'] = 'rtp\/chipset_house4.png'; |
||
586 | $res['chipset\/house5'] = 'rtp\/chipset_house5.png'; |
||
587 | $res['chipset\/inner'] = 'rtp\/chipset_inner.png'; |
||
588 | $res['chipset\/japanese_town'] = 'rtp\/chipset_japanese_town.png'; |
||
589 | $res['chipset\/lufia2'] = 'rtp\/chipset_lufia2.png'; |
||
590 | $res['chipset\/lufia2_b'] = 'rtp\/chipset_lufia2_b.png'; |
||
591 | $res['chipset\/lufia2_d'] = 'rtp\/chipset_lufia2_d.png'; |
||
592 | $res['chipset\/lufia2_house'] = 'rtp\/chipset_lufia2_house.png'; |
||
593 | $res['chipset\/lufia2_t'] = 'rtp\/chipset_lufia2_t.png'; |
||
594 | $res['chipset\/main'] = 'rtp\/chipset_main.png'; |
||
595 | $res['chipset\/map_town01'] = 'rtp\/chipset_map_town01.png'; |
||
596 | $res['chipset\/minato1'] = 'rtp\/chipset_minato1.png'; |
||
597 | $res['chipset\/modern'] = 'rtp\/chipset_modern.png'; |
||
598 | $res['chipset\/modern_b'] = 'rtp\/chipset_modern_b.png'; |
||
599 | $res['chipset\/modern_c'] = 'rtp\/chipset_modern_c.png'; |
||
600 | $res['chipset\/modern_world'] = 'rtp\/chipset_modern_world.png'; |
||
601 | $res['chipset\/modern2'] = 'rtp\/chipset_modern2.png'; |
||
602 | $res['chipset\/modern3'] = 'rtp\/chipset_modern3.png'; |
||
603 | $res['chipset\/modified'] = 'rtp\/chipset_modified.png'; |
||
604 | $res['chipset\/outcastle'] = 'rtp\/chipset_outcastle.png'; |
||
605 | $res['chipset\/outline'] = 'rtp\/chipset_outline.png'; |
||
606 | $res['chipset\/phantasystar'] = 'rtp\/chipset_phantasystar.png'; |
||
607 | $res['chipset\/pocket_m'] = 'rtp\/chipset_pocket_m.png'; |
||
608 | $res['chipset\/pokemontiles'] = 'rtp\/chipset_pokemontiles.png'; |
||
609 | $res['chipset\/ps4'] = 'rtp\/chipset_ps4.png'; |
||
610 | $res['chipset\/robotrektown'] = 'rtp\/chipset_robotrektown.png'; |
||
611 | $res['chipset\/rs3'] = 'rtp\/chipset_rs3.png'; |
||
612 | $res['chipset\/school_chipset'] = 'rtp\/chipset_school_chipset.png'; |
||
613 | $res['chipset\/sd3'] = 'rtp\/chipset_sd3.png'; |
||
614 | $res['chipset\/sd3_b'] = 'rtp\/chipset_sd3_b.png'; |
||
615 | $res['chipset\/sd3_c'] = 'rtp\/chipset_sd3_c.png'; |
||
616 | $res['chipset\/sd3_d'] = 'rtp\/chipset_sd3_d.png'; |
||
617 | $res['chipset\/ship'] = 'rtp\/chipset_ship'.$maker.'.png'; |
||
618 | $res['chipset\/som'] = 'rtp\/chipset_som.png'; |
||
619 | $res['chipset\/sompalace'] = 'rtp\/chipset_sompalace.png'; |
||
620 | $res['chipset\/sompalace2'] = 'rtp\/chipset_sompalace2.png'; |
||
621 | $res['chipset\/space'] = 'rtp\/chipset_space.png'; |
||
622 | $res['chipset\/suik2herohouse'] = 'rtp\/chipset_suik2herohouse.png'; |
||
623 | $res['chipset\/suik2house'] = 'rtp\/chipset_suik2house.png'; |
||
624 | $res['chipset\/suik2inside'] = 'rtp\/chipset_suik2inside.png'; |
||
625 | $res['chipset\/suik2kyaro'] = 'rtp\/chipset_suik2kyaro.png'; |
||
626 | $res['chipset\/suik2kyaroinside'] = 'rtp\/chipset_suik2kyaroinside.png'; |
||
627 | $res['chipset\/terranig'] = 'rtp\/chipset_terranig.png'; |
||
628 | $res['chipset\/topcity'] = 'rtp\/chipset_topcity.png'; |
||
629 | $res['chipset\/top-totus'] = 'rtp\/chipset_top-totus.png'; |
||
630 | $res['chipset\/town'] = 'rtp\/chipset_town.png'; |
||
631 | $res['chipset\/town_21'] = 'rtp\/chipset_town_21.png'; |
||
632 | $res['chipset\/town2'] = 'rtp\/chipset_town2.png'; |
||
633 | $res['chipset\/town3'] = 'rtp\/chipset_town3.png'; |
||
634 | $res['chipset\/town4'] = 'rtp\/chipset_town4.png'; |
||
635 | $res['chipset\/townset_greg'] = 'rtp\/chipset_townset_greg.png'; |
||
636 | $res['chipset\/underground'] = 'rtp\/chipset_underground.png'; |
||
637 | $res['chipset\/village'] = 'rtp\/chipset_village.png'; |
||
638 | $res['chipset\/village3'] = 'rtp\/chipset_village3.png'; |
||
639 | $res['chipset\/white'] = 'rtp\/chipset_white.png'; |
||
640 | $res['chipset\/woods'] = 'rtp\/chipset_woods.png'; |
||
641 | $res['chipset\/world'] = 'rtp\/chipset_world.png'; |
||
642 | $res['chipset\/world2'] = 'rtp\/chipset_world2.png'; |
||
643 | $res['chipset\/xfileschipset1'] = 'rtp\/xfileschipset1.png'; |
||
644 | $res['chipset\/zelda3'] = 'rtp\/chipset_zelda3.png'; |
||
645 | $res['chipset\/zelda3_b'] = 'rtp\/chipset_zelda3_b.png'; |
||
646 | $res['chipset\/zelda3_d'] = 'rtp\/chipset_zelda3_d.png'; |
||
647 | $res['chipset\/zeldaw'] = 'rtp\/chipset_zeldaw.png'; |
||
648 | $res['chipset\/'] = 'rtp\/chipset_.png'; |
||
649 | |||
650 | //RM2k RTP |
||
651 | $res['faceset\/anime3'] = 'rtp\/faceset_anime3.png'; |
||
652 | $res['faceset\/atelier'] = 'rtp\/faceset_atelier.png'; |
||
653 | $res['faceset\/atelier_b'] = 'rtp\/faceset_atelier_b.png'; |
||
654 | $res['faceset\/bof2'] = 'rtp\/faceset_bof2.png'; |
||
655 | $res['faceset\/bulma'] = 'rtp\/faceset_bulma.png'; |
||
656 | $res['faceset\/cc'] = 'rtp\/faceset_cc.png'; |
||
657 | $res['faceset\/ccfaces1'] = 'rtp\/faceset_ccfaces1.png'; |
||
658 | $res['faceset\/ccfaces2'] = 'rtp\/faceset_ccfaces2.png'; |
||
659 | $res['faceset\/ccfaces3'] = 'rtp\/faceset_ccfaces3.png'; |
||
660 | $res['faceset\/ch01_all'] = 'rtp\/faceset_ch01_all.png'; |
||
661 | $res['faceset\/chara1'] = 'rtp\/faceset_chara1.png'; |
||
662 | $res['faceset\/chara2'] = 'rtp\/faceset_chara2.png'; |
||
663 | $res['faceset\/chrono_face'] = 'rtp\/faceset_chrono_face.png'; |
||
664 | $res['faceset\/cool'] = 'rtp\/faceset_cool.png'; |
||
665 | $res['faceset\/ct2'] = 'rtp\/faceset_ct2.png'; |
||
666 | $res['faceset\/dbz'] = 'rtp\/faceset_dbz.png'; |
||
667 | $res['faceset\/dbz_b'] = 'rtp\/faceset_dbz_b.png'; |
||
668 | $res['faceset\/dbz_c'] = 'rtp\/faceset_dbz_c.png'; |
||
669 | $res['faceset\/dbz_face_1'] = 'rtp\/faceset_dbz_face_1.png'; |
||
670 | $res['faceset\/dbz_face_2'] = 'rtp\/faceset_dbz_face_2.png'; |
||
671 | $res['faceset\/dbz_face_3'] = 'rtp\/faceset_dbz_face_3.png'; |
||
672 | $res['faceset\/dbzface1'] = 'rtp\/faceset_dbzface1.png'; |
||
673 | $res['faceset\/don_faces1'] = 'rtp\/faceset_don_faces1.png'; |
||
674 | $res['faceset\/don_faces2'] = 'rtp\/faceset_don_faces2.png'; |
||
675 | $res['faceset\/ebfacesx1'] = 'rtp\/faceset_ebfacesx1.png'; |
||
676 | $res['faceset\/expresion'] = 'rtp\/faceset_expresion.png'; |
||
677 | $res['faceset\/expression4'] = 'rtp\/faceset_expression4.png'; |
||
678 | $res['faceset\/expression5'] = 'rtp\/faceset_expression5.png'; |
||
679 | $res['faceset\/expression6'] = 'rtp\/faceset_expression6.png'; |
||
680 | $res['faceset\/expression7'] = 'rtp\/faceset_expression7.png'; |
||
681 | $res['faceset\/expression7_b'] = 'rtp\/faceset_expression7_b.png'; |
||
682 | $res['faceset\/face002'] = 'rtp\/faceset_face002.png'; |
||
683 | $res['faceset\/face01'] = 'rtp\/faceset_face01.png'; |
||
684 | $res['faceset\/face03'] = 'rtp\/faceset_face03.png'; |
||
685 | $res['faceset\/face1'] = 'rtp\/faceset_face1.png'; |
||
686 | $res['faceset\/face2'] = 'rtp\/faceset_face2.png'; |
||
687 | $res['faceset\/face3'] = 'rtp\/faceset_face3.png'; |
||
688 | $res['faceset\/face4'] = 'rtp\/faceset_face4.png'; |
||
689 | $res['faceset\/faces1'] = 'rtp\/backdrop_faces1.png'; |
||
690 | $res['faceset\/faces2'] = 'rtp\/backdrop_faces2.png'; |
||
691 | $res['faceset\/ff4'] = 'rtp\/faceset_ff4.png'; |
||
692 | $res['faceset\/ff6_b'] = 'rtp\/faceset_ff6_b.png'; |
||
693 | $res['faceset\/ff7'] = 'rtp\/faceset_ff7.png'; |
||
694 | $res['faceset\/ff7face'] = 'rtp\/faceset_ff7face.png'; |
||
695 | $res['faceset\/ff8'] = 'rtp\/faceset_ff8.png'; |
||
696 | $res['faceset\/ff8_b'] = 'rtp\/faceset_ff8_b.png'; |
||
697 | $res['faceset\/ff9'] = 'rtp\/faceset_ff9.png'; |
||
698 | $res['faceset\/ff92'] = 'rtp\/faceset_ff92.png'; |
||
699 | $res['faceset\/ff9faceset'] = 'rtp\/faceset_ff9faceset.png'; |
||
700 | $res['faceset\/fire_emblem'] = 'rtp\/faceset_fire_emblem.png'; |
||
701 | $res['faceset\/fire_emblem_b'] = 'rtp\/faceset_fire_emblem_b.png'; |
||
702 | $res['faceset\/fire_emblem_c'] = 'rtp\/faceset_fire_emblem_c.png'; |
||
703 | $res['faceset\/hero1'] = 'rtp\/backdrop_hero1.png'; |
||
704 | $res['faceset\/hero2'] = 'rtp\/backdrop_hero2.png'; |
||
705 | $res['faceset\/hourai'] = 'rtp\/faceset_hourai.png'; |
||
706 | $res['faceset\/image1'] = 'rtp\/faceset_image1.png'; |
||
707 | $res['faceset\/item'] = 'rtp\/faceset_item.png'; |
||
708 | $res['faceset\/item_b'] = 'rtp\/faceset_item_b.png'; |
||
709 | $res['faceset\/item_c'] = 'rtp\/faceset_item_c.png'; |
||
710 | $res['faceset\/kof'] = 'rtp\/faceset_kof.png'; |
||
711 | $res['faceset\/langrissa'] = 'rtp\/faceset_langrissa.png'; |
||
712 | $res['faceset\/langrissa_b'] = 'rtp\/faceset_langrissa_b.png'; |
||
713 | $res['faceset\/lodfaces'] = 'rtp\/faceset_lodfaces.png'; |
||
714 | $res['faceset\/lom'] = 'rtp\/faceset_lom.png'; |
||
715 | $res['faceset\/lom_b'] = 'rtp\/faceset_lom_b.png'; |
||
716 | $res['faceset\/lom_c'] = 'rtp\/faceset_lom_c.png'; |
||
717 | $res['faceset\/marvel'] = 'rtp\/faceset_marvel.png'; |
||
718 | $res['faceset\/medieval'] = 'rtp\/faceset_medieval.png'; |
||
719 | $res['faceset\/medieval2'] = 'rtp\/faceset_medieval2.png'; |
||
720 | $res['faceset\/megaman(face)'] = 'rtp\/faceset_megaman(face).png'; |
||
721 | $res['faceset\/mm2'] = 'rtp\/faceset_mm2.png'; |
||
722 | $res['faceset\/monster'] = 'rtp\/backdrop_monster.png'; |
||
723 | $res['faceset\/monster2'] = 'rtp\/faceset_monster2.png'; |
||
724 | $res['faceset\/monsters'] = 'rtp\/faceset_monsters.png'; |
||
725 | $res['faceset\/people1'] = 'rtp\/faceset_people1.png'; |
||
726 | $res['faceset\/people2'] = 'rtp\/faceset_people2.png'; |
||
727 | $res['faceset\/piccoloface'] = 'rtp\/faceset_piccoloface.png'; |
||
728 | $res['faceset\/pokerface'] = 'rtp\/faceset_pokerface.png'; |
||
729 | $res['faceset\/pokemon_2'] = 'rtp\/faceset_pokemon_2.png'; |
||
730 | $res['faceset\/pokemon2'] = 'rtp\/faceset_pokemon2.png'; |
||
731 | $res['faceset\/ranmaface'] = 'rtp\/faceset_ranmaface.png'; |
||
732 | $res['faceset\/sailor'] = 'rtp\/faceset_sailor.png'; |
||
733 | $res['faceset\/sailorfaces1'] = 'rtp\/faceset_sailorfaces1.png'; |
||
734 | $res['faceset\/samurai_spirit4'] = 'rtp\/faceset_samurai_spirit4.png'; |
||
735 | $res['faceset\/samurai_spirit4_b'] = 'rtp\/faceset_samurai_spirit4_b.png'; |
||
736 | $res['faceset\/slayers_face_0'] = 'rtp\/faceset_slayers_face_0.png'; |
||
737 | $res['faceset\/slayers_face_1'] = 'rtp\/faceset_slayers_face_1.png'; |
||
738 | $res['faceset\/sonicface1'] = 'rtp\/faceset_sonicface1.png'; |
||
739 | $res['faceset\/sonicface2'] = 'rtp\/faceset_sonicface2.png'; |
||
740 | $res['faceset\/sonicface3'] = 'rtp\/faceset_sonicface3.png'; |
||
741 | $res['faceset\/srm95'] = 'rtp\/faceset_srm95.png'; |
||
742 | $res['faceset\/star_wars'] = 'rtp\/faceset_star_wars.png'; |
||
743 | $res['faceset\/star_wars_b'] = 'rtp\/faceset_star_wars_b.png'; |
||
744 | $res['faceset\/staroceanface'] = 'rtp\/faceset_staroceanface.png'; |
||
745 | $res['faceset\/suikoden'] = 'rtp\/faceset_suikoden.png'; |
||
746 | $res['faceset\/suikoden_b'] = 'rtp\/faceset_suikoden_b.png'; |
||
747 | $res['faceset\/suikoden_c'] = 'rtp\/faceset_suikoden_c.png'; |
||
748 | $res['faceset\/teikyou'] = 'rtp\/faceset_teikyou.png'; |
||
749 | $res['faceset\/teikyou_b'] = 'rtp\/faceset_teikyou_b.png'; |
||
750 | $res['faceset\/top'] = 'rtp\/faceset_top.png'; |
||
751 | $res['faceset\/xeno'] = 'rtp\/faceset_xeno.png'; |
||
752 | $res['faceset\/xenogears'] = 'rtp\/faceset_xenogears.png'; |
||
753 | $res['faceset\/xenogears_b'] = 'rtp\/faceset_xenogears_b.png'; |
||
754 | $res['faceset\/xenogears_c'] = 'rtp\/faceset_xenogears_c.png'; |
||
755 | $res['faceset\/xenogears_d'] = 'rtp\/faceset_xenogears_d.png'; |
||
756 | $res['faceset\/zelda64'] = 'rtp\/faceset_zelda64.png'; |
||
757 | |||
758 | //RM2k RTP |
||
759 | $res['gameover\/gameover'] = 'rtop\/gameover_gameover.png'; |
||
760 | |||
761 | //RM2k RTP |
||
762 | $res['monster\/2souls'] = 'rtp\/monster_2souls.png'; |
||
763 | $res['monster\/alligator'] = 'rtp\/monster_alligator.png'; |
||
764 | $res['monster\/anaconda'] = 'rtp\/monster_anaconda.png'; |
||
765 | $res['monster\/angel'] = 'rtp\/monster_angel.png'; |
||
766 | $res['monster\/aquamen'] = 'rtp\/monster_aquamen.png'; |
||
767 | $res['monster\/ariman'] = 'rtp\/monster_ariman.png'; |
||
768 | $res['monster\/asura'] = 'rtp\/monster_asura.png'; |
||
769 | $res['monster\/bahamut'] = 'rtp\/monster_bahamut.png'; |
||
770 | $res['monster\/basilisk'] = 'rtp\/monster_basilisk.png'; |
||
771 | $res['monster\/bat'] = 'rtp\/monster_bat'.$maker.'.png'; |
||
772 | $res['monster\/bee'] = 'rtp\/monster_bee.png'; |
||
773 | $res['monster\/behemoth'] = 'rtp\/monster_behemoth.png'; |
||
774 | $res['monster\/berserker'] = 'rtp\/monster_berserker.png'; |
||
775 | $res['monster\/bigfoot'] = 'rtp\/monster_bigfoot.png'; |
||
776 | $res['monster\/blackturtle'] = 'rtp\/monster_blackturtle.png'; |
||
777 | $res['monster\/bloody_orb'] = 'rtp\/monster_bloody_orb.png'; |
||
778 | $res['monster\/bluedragon'] = 'rtp\/monster_bluedragon'.$maker.'.png'; |
||
779 | $res['monster\/boy1'] = 'rtp\/monster_boy1.png'; |
||
780 | $res['monster\/boy2'] = 'rtp\/monster_boy2.png'; |
||
781 | $res['monster\/caitsith'] = 'rtp\/monster_caitsith.png'; |
||
782 | $res['monster\/cancer'] = 'rtp\/monster_cancer.png'; |
||
783 | $res['monster\/carbuncle'] = 'rtp\/monster_carbuncle.png'; |
||
784 | $res['monster\/catoblepas'] = 'rtp\/monster_catoblepas.png'; |
||
785 | $res['monster\/centaur'] = 'rtp\/monster_centaur.png'; |
||
786 | $res['monster\/centipede'] = 'rtp\/monster_centipede.png'; |
||
787 | $res['monster\/cerberus'] = 'rtp\/monster_cerberus.png'; |
||
788 | $res['monster\/chimera'] = 'rtp\/monster_chimera'.$maker.'.png'; |
||
789 | $res['monster\/cloakdemon'] = 'rtp\/monster_cloakdemon.png'; |
||
790 | $res['monster\/cockatrice'] = 'rtp\/monster_cockatrice.png'; |
||
791 | $res['monster\/cojurer'] = 'rtp\/monster_cojurer.png'; |
||
792 | $res['monster\/crawler'] = 'rtp\/monster_crawler.png'; |
||
793 | $res['monster\/cyclops'] = 'rtp\/monster_cyclops.png'; |
||
794 | $res['monster\/damn_monkey'] = 'rtp\/monster_damn_monkey.png'; |
||
795 | $res['monster\/darkelf'] = 'rtp\/monster_darkelf'.$maker.'.png'; |
||
796 | $res['monster\/darkknight'] = 'rtp\/monster_darkknight'.$maker.'.png'; |
||
797 | $res['monster\/darkrider'] = 'rtp\/monster_darkrider.png'; |
||
798 | $res['monster\/darkspirit'] = 'rtp\/monster_darkspirit.png'; |
||
799 | $res['monster\/death'] = 'rtp\/monster_death.png'; |
||
800 | $res['monster\/deathgaze'] = 'rtp\/monster_deathgaze.png'; |
||
801 | $res['monster\/demon'] = 'rtp\/monster_demon.png'; |
||
802 | $res['monster\/demon_king2'] = 'rtp\/monster_demon_king2.png'; |
||
803 | $res['monster\/dlicker'] = 'rtp\/monster_dlicker.png'; |
||
804 | $res['monster\/dortylla'] = 'rtp\/monster_dortylla.png'; |
||
805 | $res['monster\/dragon'] = 'rtp\/monster_dragon.png'; |
||
806 | $res['monster\/dragonknight'] = 'rtp\/monster_dragonknight'.$maker.'.png'; |
||
807 | $res['monster\/dragoon1'] = 'rtp\/monster_dragoon1.png'; |
||
808 | $res['monster\/efreet'] = 'rtp\/monster_efreet.png'; |
||
809 | $res['monster\/elf'] = 'rtp\/monster_elf.png'; |
||
810 | $res['monster\/fenrir'] = 'rtp\/monster_fenrir.png'; |
||
811 | $res['monster\/fire_fox'] = 'rtp\/monster_fire_fox.png'; |
||
812 | $res['monster\/firescull'] = 'rtp\/monster_firescull.png'; |
||
813 | $res['monster\/fish'] = 'rtp\/monster_fish.png'; |
||
814 | $res['monster\/flaret'] = 'rtp\/monster_flaret.png'; |
||
815 | $res['monster\/flyingdemon'] = 'rtp\/monster_flyingdemon.png'; |
||
816 | $res['monster\/gargoyle'] = 'rtp\/monster_gargoyle'.$maker.'.png'; |
||
817 | $res['monster\/garuda'] = 'rtp\/monster_garuda.png'; |
||
818 | $res['monster\/gekua'] = 'rtp\/monster_gekua.png'; |
||
819 | $res['monster\/ghost'] = 'rtp\/monster_ghost'.$maker.'.png'; |
||
820 | $res['monster\/ghoul'] = 'rtp\/monster_ghoul.png'; |
||
821 | $res['monster\/giant'] = 'rtp\/monster_giant.png'; |
||
822 | $res['monster\/girl2'] = 'rtp\/monster_girl2.png'; |
||
823 | $res['monster\/girl4'] = 'rtp\/monster_girl4.png'; |
||
824 | $res['monster\/girl6'] = 'rtp\/monster_girl6.png'; |
||
825 | $res['monster\/gnome'] = 'rtp\/monster_gnome.png'; |
||
826 | $res['monster\/goblin'] = 'rtp\/monster_goblin.png'; |
||
827 | $res['monster\/golem'] = 'rtp\/monster_golem.png'; |
||
828 | $res['monster\/golem2'] = 'rtp\/monster_golem2.png'; |
||
829 | $res['monster\/granny'] = 'rtp\/monster_granny.png'; |
||
830 | $res['monster\/greendragon1'] = 'rtp\/monster_greendragon1.png'; |
||
831 | $res['monster\/greendragon2'] = 'rtp\/monster_greendragon2.png'; |
||
832 | $res['monster\/griphon'] = 'rtp\/monster_griphon.png'; |
||
833 | $res['monster\/gugu'] = 'rtp\/monster_gugu.png'; |
||
834 | $res['monster\/harpy'] = 'rtp\/monster_harpy.png'; |
||
835 | $res['monster\/hellhound'] = 'rtp\/monster_hellhound.png'; |
||
836 | $res['monster\/hero1'] = 'rtp\/monster_hero1.png'; |
||
837 | $res['monster\/her2'] = 'rtp\/monster_her2.png'; |
||
838 | $res['monster\/hog'] = 'rtp\/monster_hog.png'; |
||
839 | $res['monster\/hydra'] = 'rtp\/monster_hydra.png'; |
||
840 | $res['monster\/igogosha'] = 'rtp\/monster_igogosha.png'; |
||
841 | $res['monster\/imp'] = 'rtp\/monster_imp.png'; |
||
842 | $res['monster\/king'] = 'rtp\/monster_king.png'; |
||
843 | $res['monster\/kisser'] = 'rtp\/monster_kisser.png'; |
||
844 | $res['monster\/ladyblue'] = 'rtp\/monster_ladyblue.png'; |
||
845 | $res['monster\/leshi'] = 'rtp\/monster_leshi.png'; |
||
846 | $res['monster\/lizardmen'] = 'rtp\/monster_lizardmen.png'; |
||
847 | $res['monster\/mad_monkey'] = 'rtp\/monster_mad_monkey.png'; |
||
848 | $res['monster\/man5'] = 'rtp\/monster_man5.png'; |
||
849 | $res['monster\/medusa'] = 'rtp\/monster_medusa.png'; |
||
850 | $res['monster\/minotaur'] = 'rtp\/monster_minotaur.png'; |
||
851 | $res['monster\/mummy'] = 'rtp\/monster_mummy.png'; |
||
852 | $res['monster\/myss'] = 'rtp\/monster_myss.png'; |
||
853 | $res['monster\/napper'] = 'rtp\/monster_napper.png'; |
||
854 | $res['monster\/ninja'] = 'rtp\/monster_ninja.png'; |
||
855 | $res['monster\/oak'] = 'rtp\/monster_oak.png'; |
||
856 | $res['monster\/octupus'] = 'rtp\/monster_octupus.png'; |
||
857 | $res['monster\/ogrechest'] = 'rtp\/monster_ogrechest.png'; |
||
858 | $res['monster\/old_pirat'] = 'rtp\/monster_old_pirat.png'; |
||
859 | $res['monster\/oldman7'] = 'rtp\/monster_oldman7.png'; |
||
860 | $res['monster\/porker'] = 'rtp\/monster_porker.png'; |
||
861 | $res['monster\/princess'] = 'rtp\/monster_princess.png'; |
||
862 | $res['monster\/pupsy'] = 'rtp\/monster_pupsy.png'; |
||
863 | $res['monster\/redscorpion'] = 'rtp\/monster_redscorpion.png'; |
||
864 | $res['monster\/rooster'] = 'rtp\/monster_rooster.png'; |
||
865 | $res['monster\/samurai'] = 'rtp\/monster_samurai.png'; |
||
866 | $res['monster\/satan'] = 'rtp\/monster_satan.png'; |
||
867 | $res['monster\/skeleton'] = 'rtp\/monster_skeleton.png'; |
||
868 | $res['monster\/skeleton_magi'] = 'rtp\/monster_skeleton_magi.png'; |
||
869 | $res['monster\/slime'] = 'rtp\/monster_slime.png'; |
||
870 | $res['monster\/slime_death'] = 'rtp\/monster_slime_death.png'; |
||
871 | $res['monster\/snake'] = 'rtp\/monster_snake.png'; |
||
872 | $res['monster\/spider'] = 'rtp\/monster_spider.png'; |
||
873 | $res['monster\/thief'] = 'rtp\/monster_thief.png'; |
||
874 | $res['monster\/torturle'] = 'rtp\/monster_torturle.png'; |
||
875 | $res['monster\/troll'] = 'rtp\/monster_troll.png'; |
||
876 | $res['monster\/vampire'] = 'rtp\/monster_vampire\'.png'; |
||
877 | $res['monster\/warrior'] = 'rtp\/monster_warrior.png'; |
||
878 | $res['monster\/witch1'] = 'rtp\/monster_witch1.png'; |
||
879 | $res['monster\/witch2'] = 'rtp\/monster_witch2.png'; |
||
880 | $res['monster\/wolf'] = 'rtp\/monster_wolf.png'; |
||
881 | $res['monster\/wolfman'] = 'rtp\/monster_wolfman.png'; |
||
882 | $res['monster\/wyvern'] = 'rtp\/monster_wyvern.png'; |
||
883 | $res['monster\/zombie'] = 'rtp\/monster_zombie'.$maker.'.png'; |
||
884 | $res['monster\/zombie2'] = 'rtp\/monster_zombie2.png'; |
||
885 | $res['monster\/'] = 'rtp\/monster_.png'; |
||
886 | |||
887 | //RM2k RTP |
||
888 | $res['music\/adventure'] = 'rtp\/music_adventure.mid'; |
||
889 | $res['music\/airborne'] = 'rtp\/music_airborne.mid'; |
||
890 | $res['music\/ancient-castle'] = 'rtp\/music_ancient-castle.mid'; |
||
891 | $res['music\/anger'] = 'rtp\/music_anger.mid'; |
||
892 | $res['music\/animal'] = 'rtp\/music_animal'.$maker.'.mid'; |
||
893 | $res['music\/arena'] = 'rtp\/music_arena.mid'; |
||
894 | $res['music\/armyclash'] = 'rtp\/music_armyclash.mid'; |
||
895 | $res['music\/bar'] = 'rtp\/music_bar.mid'; |
||
896 | $res['music\/battle1'] = 'rtp\/music_battle1.mid'; |
||
897 | $res['music\/battle2'] = 'rtp\/music_battle2.mid'; |
||
898 | $res['music\/battle3'] = 'rtp\/music_battle3.mid'; |
||
899 | $res['music\/battleend1'] = 'rtp\/music_battleend1.mid'; |
||
900 | $res['music\/battleend2'] = 'rtp\/music_battleend2.mid'; |
||
901 | $res['music\/battleend3'] = 'rtp\/music_battleend3.mid'; |
||
902 | $res['music\/battleend4'] = 'rtp\/music_battleend4.mid'; |
||
903 | $res['music\/bazaar'] = 'rtp\/music_bazaar.mid'; |
||
904 | $res['music\/boat1'] = 'rtp\/music_boat1.mid'; |
||
905 | $res['music\/boat2'] = 'rtp\/music_boat2.mid'; |
||
906 | $res['music\/boat3'] = 'rtp\/music_boat3.mid'; |
||
907 | $res['music\/boss1'] = 'rtp\/music_boss1.mid'; |
||
908 | $res['music\/boss2'] = 'rtp\/music_boss2.mid'; |
||
909 | $res['music\/boss3'] = 'rtp\/music_boss3.mid'; |
||
910 | $res['music\/boss4'] = 'rtp\/music_boss4.mid'; |
||
911 | $res['music\/bustling-city'] = 'rtp\/music_bustling-city.mid'; |
||
912 | $res['music\/calm'] = 'rtp\/music_calm.mid'; |
||
913 | $res['music\/casino'] = 'rtp\/music_casino'.$maker.'.mid'; |
||
914 | $res['music\/castle1'] = 'rtp\/music_castle1.mid'; |
||
915 | $res['music\/castle2'] = 'rtp\/music_castle2.mid'; |
||
916 | $res['music\/castle3'] = 'rtp\/music_castle3.mid'; |
||
917 | $res['music\/castle4'] = 'rtp\/music_castle4.mid'; |
||
918 | $res['music\/castle5'] = 'rtp\/music_castle5.mid'; |
||
919 | $res['music\/church'] = 'rtp\/music_church.mid'; |
||
920 | $res['music\/church1'] = 'rtp\/music_church1.mid'; |
||
921 | $res['music\/church2'] = 'rtp\/music_church2.mid'; |
||
922 | $res['music\/crisis'] = 'rtp\/music_crisis.mid'; |
||
923 | $res['music\/dark'] = 'rtp\/music_dark.mid'; |
||
924 | $res['music\/defeat'] = 'rtp\/music_defeat.mid'; |
||
925 | $res['music\/demonic'] = 'rtp\/music_demonic.mid'; |
||
926 | $res['music\/devil'] = 'rtp\/music_devil.mid'; |
||
927 | $res['music\/dimension'] = 'rtp\/music_dimension.mid'; |
||
928 | $res['music\/done'] = 'rtp\/music_done.mid'; |
||
929 | $res['music\/doubt'] = 'rtp\/music_doubt.mid'; |
||
930 | $res['music\/dungeon1'] = 'rtp\/music_dungeon1.mid'; |
||
931 | $res['music\/dungeon2'] = 'rtp\/music_dungeon2.mid'; |
||
932 | $res['music\/dungeon3'] = 'rtp\/music_dungeon3.mid'; |
||
933 | $res['music\/dungeon4'] = 'rtp\/music_dungeon4.mid'; |
||
934 | $res['music\/dungeon5'] = 'rtp\/music_dungeon5.mid'; |
||
935 | $res['music\/dungeon7'] = 'rtp\/music_dungeon7.mid'; |
||
936 | $res['music\/empire'] = 'rtp\/music_empire.mid'; |
||
937 | $res['music\/ending1'] = 'rtp\/music_ending1.mid'; |
||
938 | $res['music\/ending2'] = 'rtp\/music_ending2.mid'; |
||
939 | $res['music\/ending3'] = 'rtp\/music_ending3.mid'; |
||
940 | $res['music\/endless-fight'] = 'rtp\/music_endless-fight.mid'; |
||
941 | $res['music\/energy'] = 'rtp\/music_energy.mid'; |
||
942 | $res['music\/eternal'] = 'rtp\/music_eternal.mid'; |
||
943 | $res['music\/evil-temple'] = 'rtp\/music_evil-temple.mid'; |
||
944 | $res['music\/eviltown'] = 'rtp\/music_eviltown.mid'; |
||
945 | $res['music\/explore'] = 'rtp\/music_explore.mid'; |
||
946 | $res['music\/fairies'] = 'rtp\/music_fairies.mid'; |
||
947 | $res['music\/fairy1'] = 'rtp\/music_fairy1.mid'; |
||
948 | $res['music\/fairy2'] = 'rtp\/music_fairy2.mid'; |
||
949 | $res['music\/fairy3'] = 'rtp\/music_fairy3.mid'; |
||
950 | $res['music\/fanfare1'] = 'rtp\/music_fanfare1.mid'; |
||
951 | $res['music\/fanfare2'] = 'rtp\/music_fanfare2.mid'; |
||
952 | $res['music\/fanfare3'] = 'rtp\/music_fanfare3.mid'; |
||
953 | $res['music\/fanfare4'] = 'rtp\/music_fanfare4.mid'; |
||
954 | $res['music\/fanfare5'] = 'rtp\/music_fanfare5.mid'; |
||
955 | $res['music\/fanfare6'] = 'rtp\/music_fanfare6.mid'; |
||
956 | $res['music\/far-east'] = 'rtp\/music_far-east.mid'; |
||
957 | $res['music\/farewell1'] = 'rtp\/music_farewell1.mid'; |
||
958 | $res['music\/farewell2'] = 'rtp\/music_farewell2.mid'; |
||
959 | $res['music\/farewell3'] = 'rtp\/music_farewell3.mid'; |
||
960 | $res['music\/farewell4'] = 'rtp\/music_farewell4.mid'; |
||
961 | $res['music\/field1'] = 'rtp\/music_field1.mid'; |
||
962 | $res['music\/field2'] = 'rtp\/music_field2.mid'; |
||
963 | $res['music\/field3'] = 'rtp\/music_field3.mid'; |
||
964 | $res['music\/field4'] = 'rtp\/music_field4.mid'; |
||
965 | $res['music\/fierce-battle'] = 'rtp\/music_fierce-battle.mid'; |
||
966 | $res['music\/fiesta'] = 'rtp\/music_fiesta.mid'; |
||
967 | $res['music\/foreboding'] = 'rtp\/music_foreboding.mid'; |
||
968 | $res['music\/forest'] = 'rtp\/music_forest.mid'; |
||
969 | $res['music\/friends1'] = 'rtp\/music_friends1.mid'; |
||
970 | $res['music\/gag1'] = 'rtp\/music_gag1.mid'; |
||
971 | $res['music\/gag2'] = 'rtp\/music_gag2.mid'; |
||
972 | $res['music\/gameover1'] = 'rtp\/music_gameover1.mid'; |
||
973 | $res['music\/gameover2'] = 'rtp\/music_gameover2.mid'; |
||
974 | $res['music\/gameover3'] = 'rtp\/music_gameover3.mid'; |
||
975 | $res['music\/get'] = 'rtp\/music_get.mid'; |
||
976 | $res['music\/ghost-town1'] = 'rtp\/music_ghost-town1.mid'; |
||
977 | $res['music\/ghost-town2'] = 'rtp\/music_ghost-town.mid'; |
||
978 | $res['music\/godslayer'] = 'rtp\/music_godslayer.mid'; |
||
979 | $res['music\/gosttown1'] = 'rtp\/music_gosttown1.mid'; |
||
980 | $res['music\/gosttown2'] = 'rtp\/music_gosttown2.mid'; |
||
981 | $res['music\/hallowed-halls'] = 'rtp\/music_hallowed-halls.mid'; |
||
982 | $res['music\/haunted'] = 'rtp\/music_haunted.mid'; |
||
983 | $res['music\/hero1'] = 'rtp\/music_hero1.mid'; |
||
984 | $res['music\/hero2'] = 'rtp\/music_hero2.mid'; |
||
985 | $res['music\/horns'] = 'rtp\/music_horns.mid'; |
||
986 | $res['music\/icecave'] = 'rtp\/music_icecave.mid'; |
||
987 | $res['music\/inn1'] = 'rtp\/music_inn1.mid'; |
||
988 | $res['music\/inn2'] = 'rtp\/music_inn2.mid'; |
||
989 | $res['music\/inn3'] = 'rtp\/music_inn3.mid'; |
||
990 | $res['music\/interlude'] = 'rtp\/music_interlude.mid'; |
||
991 | $res['music\/intro'] = 'rtp\/music_intro.mid'; |
||
992 | $res['music\/item'] = 'rtp\/music_item.mid'; |
||
993 | $res['music\/jackpot'] = 'rtp\/music_jackpot.mid'; |
||
994 | $res['music\/labyrinth'] = 'rtp\/music_labyrinth.mid'; |
||
995 | $res['music\/lonewolf'] = 'rtp\/music_lonewolf.mid'; |
||
996 | $res['music\/lose'] = 'rtp\/music_lose.mid'; |
||
997 | $res['music\/malice'] = 'rtp\/music_malice.mid'; |
||
998 | $res['music\/march'] = 'rtp\/music_march.mid'; |
||
999 | $res['music\/meanwhile1'] = 'rtp\/music_meanwhile1.mid'; |
||
1000 | $res['music\/meanwhile2'] = 'rtp\/music_meanwhile2.mid'; |
||
1001 | $res['music\/mecha-base'] = 'rtp\/music_mecha-base.mid'; |
||
1002 | $res['music\/memories'] = 'rtp\/music_memories.mid'; |
||
1003 | $res['music\/memories2'] = 'rtp\/music_memories2.mid'; |
||
1004 | $res['music\/mischief1'] = 'rtp\/music_mischief1.mid'; |
||
1005 | $res['music\/mischief2'] = 'rtp\/music_mischief2.mid'; |
||
1006 | $res['music\/moonlight'] = 'rtp\/music_moonlight.mid'; |
||
1007 | $res['music\/monring1'] = 'rtp\/music_monring1.mid'; |
||
1008 | $res['music\/mtn-village'] = 'rtp\/music_mtn-village.mid'; |
||
1009 | $res['music\/mystery1'] = 'rtp\/music_mystery1.mid'; |
||
1010 | $res['music\/mystery2'] = 'rtp\/music_mystery2.mid'; |
||
1011 | $res['music\/mystery3'] = 'rtp\/music_mystery3.mid'; |
||
1012 | $res['music\/mystery4'] = 'rtp\/music_mystery4.mid'; |
||
1013 | $res['music\/night'] = 'rtp\/music_night.mid'; |
||
1014 | $res['music\/opening1'] = 'rtp\/music_opening1.mid'; |
||
1015 | $res['music\/opening2'] = 'rtp\/music_opening2.mid'; |
||
1016 | $res['music\/opening3'] = 'rtp\/music_opening3.mid'; |
||
1017 | $res['music\/ordeal'] = 'rtp\/music_ordeal.mid'; |
||
1018 | $res['music\/panic'] = 'rtp\/music_panic.mid'; |
||
1019 | $res['music\/parting1'] = 'rtp\/music_parting1.mid'; |
||
1020 | $res['music\/parting2'] = 'rtp\/music_parting2.mid'; |
||
1021 | $res['music\/peace1'] = 'rtp\/music_peace1.mid'; |
||
1022 | $res['music\/peace2'] = 'rtp\/music_peace2.mid'; |
||
1023 | $res['music\/peace3'] = 'rtp\/music_peace3.mid'; |
||
1024 | $res['music\/pirate1'] = 'rtp\/music_pirate1.mid'; |
||
1025 | $res['music\/pirate2'] = 'rtp\/music_pirate2.mid'; |
||
1026 | $res['music\/pirate3'] = 'rtp\/music_pirate3.mid'; |
||
1027 | $res['music\/pirate4'] = 'rtp\/music_pirate4.mid'; |
||
1028 | $res['music\/riddle'] = 'rtp\/music_riddle.mid'; |
||
1029 | $res['music\/ride1'] = 'rtp\/music_ride1.mid'; |
||
1030 | $res['music\/ride2'] = 'rtp\/music_ride2.mid'; |
||
1031 | $res['music\/ride3'] = 'rtp\/music_ride3.mid'; |
||
1032 | $res['music\/ride4'] = 'rtp\/music_ride4.mid'; |
||
1033 | $res['music\/royal-ball'] = 'rtp\/music_royal-ball.mid'; |
||
1034 | $res['music\/ruins'] = 'rtp\/music_ruins.mid'; |
||
1035 | $res['music\/sad'] = 'rtp\/music_sad.mid'; |
||
1036 | $res['music\/sadness'] = 'rtp\/music_sadness.mid'; |
||
1037 | $res['music\/search'] = 'rtp\/music_search.mid'; |
||
1038 | $res['music\/se-alarm'] = 'rtp\/music_se-alarm.wav'; |
||
1039 | $res['music\/se-bird'] = 'rtp\/music_se-bird.wav'; |
||
1040 | $res['music\/se-clock'] = 'rtp\/music_se-clock.wav'; |
||
1041 | $res['music\/se-crowd'] = 'rtp\/music_se-crowd.wav'; |
||
1042 | $res['music\/se-gale'] = 'rtp\/music_se-gale.wav'; |
||
1043 | $res['music\/se-jungle'] = 'rtp\/music_se-jungle.wav'; |
||
1044 | $res['music\/se-ocean'] = 'rtp\/music_se-ocean.wav'; |
||
1045 | $res['music\/se-quake'] = 'rtp\/music_se-quake.wav'; |
||
1046 | $res['music\/se-rain'] = 'rtp\/music_se-rain.wav'; |
||
1047 | $res['music\/se-torrent'] = 'rtp\/music_torrent.wav'; |
||
1048 | $res['music\/seclock'] = 'rtp\/music_seclock.wav'; |
||
1049 | $res['music\/seearthquake'] = 'rtp\/music_seearthquake.wav'; |
||
1050 | $res['music\/serain'] = 'rtp\/music_serain.wav'; |
||
1051 | $res['music\/serain2'] = 'rtp\/music_serain2.wav'; |
||
1052 | $res['music\/sesea'] = 'rtp\/music_sesea.wav'; |
||
1053 | $res['music\/ship1'] = 'rtp\/music_ship1.mid'; |
||
1054 | $res['music\/ship2'] = 'rtp\/music_ship2.mid'; |
||
1055 | $res['music\/ship3'] = 'rtp\/music_ship3.mid'; |
||
1056 | $res['music\/shop1'] = 'rtp\/music_shop1.mid'; |
||
1057 | $res['music\/shop2'] = 'rtp\/music_shop2.mid'; |
||
1058 | $res['music\/shop3'] = 'rtp\/music_shop3.mid'; |
||
1059 | $res['music\/shop4'] = 'rtp\/music_shop4.mid'; |
||
1060 | $res['music\/shop5'] = 'rtp\/music_shop5.mid'; |
||
1061 | $res['music\/showdown'] = 'rtp\/music_showdown.mid'; |
||
1062 | $res['music\/snow'] = 'rtp\/music_snow.mid'; |
||
1063 | $res['music\/snowtown'] = 'rtp\/music_snowtown.mid'; |
||
1064 | $res['music\/solace1'] = 'rtp\/music_solace1.mid'; |
||
1065 | $res['music\/solace2'] = 'rtp\/music_solace2.mid'; |
||
1066 | $res['music\/solace3'] = 'rtp\/music_solace3.mid'; |
||
1067 | $res['music\/sorrow'] = 'rtp\/music_sorrow.mid'; |
||
1068 | $res['music\/spirit'] = 'rtp\/music_spirit.mid'; |
||
1069 | $res['music\/spring'] = 'rtp\/music_spring.mid'; |
||
1070 | $res['music\/strangetown'] = 'rtp\/music_strangetown.mid'; |
||
1071 | $res['music\/strength'] = 'rtp\/music_strength.mid'; |
||
1072 | $res['music\/success'] = 'rtp\/music_success.mid'; |
||
1073 | $res['music\/surprise'] = 'rtp\/music_surprise.mid'; |
||
1074 | $res['music\/tension'] = 'rtp\/music_tension.mid'; |
||
1075 | $res['music\/thief'] = 'rtp\/music_thief.mid'; |
||
1076 | $res['music\/tightspot'] = 'rtp\/music_tightspot.mid'; |
||
1077 | $res['music\/tower1'] = 'rtp\/music_tower1.mid'; |
||
1078 | $res['music\/tower2'] = 'rtp\/music_tower2.mid'; |
||
1079 | $res['music\/tower3'] = 'rtp\/music_tower3.mid'; |
||
1080 | $res['music\/town1'] = 'rtp\/music_town1.mid'; |
||
1081 | $res['music\/town2'] = 'rtp\/music_town2.mid'; |
||
1082 | $res['music\/town3'] = 'rtp\/music_town3.mid'; |
||
1083 | $res['music\/town4'] = 'rtp\/music_town4.mid'; |
||
1084 | $res['music\/town5'] = 'rtp\/music_town5.mid'; |
||
1085 | $res['music\/town-square'] = 'rtp\/music_town-square.mid'; |
||
1086 | $res['music\/treasure'] = 'rtp\/music_treasure.mid'; |
||
1087 | $res['music\/trial'] = 'rtp\/music_trial.mid'; |
||
1088 | $res['music\/triumph'] = 'rtp\/music_triumph.mid'; |
||
1089 | $res['music\/vehicle1'] = 'rtp\/music_vehicle1.mid'; |
||
1090 | $res['music\/vehicle2'] = 'rtp\/music_vehicle2.mid'; |
||
1091 | $res['music\/vehicle3'] = 'rtp\/music_vehicle3.mid'; |
||
1092 | $res['music\/victory1'] = 'rtp\/music_victory1.mid'; |
||
1093 | $res['music\/victory2'] = 'rtp\/music_victory2.mid'; |
||
1094 | $res['music\/victory3'] = 'rtp\/music_victory3.mid'; |
||
1095 | $res['music\/victory4'] = 'rtp\/music_victory4.mid'; |
||
1096 | $res['music\/village1'] = 'rtp\/music_village1.mid'; |
||
1097 | $res['music\/village2'] = 'rtp\/music_village2.mid'; |
||
1098 | $res['music\/village3'] = 'rtp\/music_village3.mid'; |
||
1099 | $res['music\/village4'] = 'rtp\/music_village4'.$maker.'.mid'; |
||
1100 | $res['music\/village5'] = 'rtp\/music_village5.mid'; |
||
1101 | $res['music\/walz'] = 'rtp\/music_walz.mid'; |
||
1102 | $res['music\/'] = 'rtp\/music_.mid'; |
||
1103 | |||
1104 | //Panorama |
||
1105 | $res['panorama\/beach1'] = 'rtp\/panorama_beach1.png'; |
||
1106 | $res['panorama\/dawn1'] = 'rtp\/panorama_dawn1'.$maker.'.png'; |
||
1107 | $res['panorama\/dawn2'] = 'rtp\/panorama_dawn2'.$maker.'.png'; |
||
1108 | $res['panorama\/dusk1'] = 'rtp\/panorama_dusk1.png'; |
||
1109 | $res['panorama\/dusk2'] = 'rtp\/panorama_dusk2.png'; |
||
1110 | $res['panorama\/evening1'] = 'rtp\/panorama_evening1.png'; |
||
1111 | $res['panorama\/evening2'] = 'rtp\/panorama_evening2.png'; |
||
1112 | $res['panorama\/galaxy'] = 'rtp\/panorama_galaxy.png'; |
||
1113 | $res['panorama\/morning1'] = 'rtp\/panorama_morning1.png'; |
||
1114 | $res['panorama\/morning2'] = 'rtp\/panorama_morning2.png'; |
||
1115 | $res['panorama\/night1'] = 'rtp\/panorama_night1'.$maker.'.png'; |
||
1116 | $res['panorama\/night2'] = 'rtp\/panorama_night2'.$maker.'.png'; |
||
1117 | $res['panorama\/planet1'] = 'rtp\/panorama_planet1'.$maker.'.png'; |
||
1118 | $res['panorama\/planet2'] = 'rtp\/panorama_planet2'.$maker.'.png'; |
||
1119 | $res['panorama\/planet3'] = 'rtp\/panorama_planet3'.$maker.'.png'; |
||
1120 | $res['panorama\/sky1'] = 'rtp\/panorama_sky1.png'; |
||
1121 | $res['panorama\/sky2'] = 'rtp\/panorama_sky2.png'; |
||
1122 | $res['panorama\/space'] = 'rtp\/panorama_space.png'; |
||
1123 | $res['panorama\/strange'] = 'rtp\/panorama_strange.png'; |
||
1124 | $res['panorama\/weird'] = 'rtp\/panorama_weird.png'; |
||
1125 | $res['panorama\/'] = 'rtp\/panorama_.png'; |
||
1126 | |||
1127 | //Pictures |
||
1128 | $res['picture\/cloud'] = 'rtp\/picture_cloud.png'; |
||
1129 | |||
1130 | //Sounds |
||
1131 | $res['sound\/absorb1'] = 'rtp\/sound_absorb1.wav'; |
||
1132 | $res['sound\/absorb2'] = 'rtp\/sound_absorb2.wav'; |
||
1133 | $res['sound\/absorption1'] = 'rtp\/sound_absorption1.wav'; |
||
1134 | $res['sound\/absorption2'] = 'rtp\/sound_absorption2.wav'; |
||
1135 | $res['sound\/annihilation1'] = 'rtp\/sound_annihilation1.wav'; |
||
1136 | $res['sound\/annihilation2'] = 'rtp\/sound_annihilation2.wav'; |
||
1137 | $res['sound\/anvil'] = 'rtp\/sound_anvil.wav'; |
||
1138 | $res['sound\/attack1'] = 'rtp\/sound_attack1'.$maker.'.wav'; |
||
1139 | $res['sound\/attack2'] = 'rtp\/sound_attack2'.$maker.'.wav'; |
||
1140 | $res['sound\/barrier'] = 'rtp\/sound_barrier'.$maker.'.wav'; |
||
1141 | $res['sound\/bell'] = 'rtp\/sound_bell.wav'; |
||
1142 | $res['sound\/bite'] = 'rtp\/sound_bite.wav'; |
||
1143 | $res['sound\/bloodsuck'] = 'rtp\/sound_bloodsuck.wav'; |
||
1144 | $res['sound\/blow1'] = 'rtp\/sound_blow1.wav'; |
||
1145 | $res['sound\/blow2'] = 'rtp\/sound_blow2.wav'; |
||
1146 | $res['sound\/blow3'] = 'rtp\/sound_blow3.wav'; |
||
1147 | $res['sound\/blow4'] = 'rtp\/sound_blow4.wav'; |
||
1148 | $res['sound\/blow5'] = 'rtp\/sound_blow5.wav'; |
||
1149 | $res['sound\/blow6'] = 'rtp\/sound_blow6.wav'; |
||
1150 | $res['sound\/blow7'] = 'rtp\/sound_blow7.wav'; |
||
1151 | $res['sound\/bolt01'] = 'rtp\/sound_bolt01.wav'; |
||
1152 | $res['sound\/bolt02'] = 'rtp\/sound_bolt02.wav'; |
||
1153 | $res['sound\/bolt03'] = 'rtp\/sound_bolt03.wav'; |
||
1154 | $res['sound\/bolt04'] = 'rtp\/sound_bolt04.wav'; |
||
1155 | $res['sound\/bolt05'] = 'rtp\/sound_bolt05.wav'; |
||
1156 | $res['sound\/bolt06'] = 'rtp\/sound_bolt06.wav'; |
||
1157 | $res['sound\/bolt07'] = 'rtp\/sound_bolt07.wav'; |
||
1158 | $res['sound\/bolt08'] = 'rtp\/sound_bolt08.wav'; |
||
1159 | $res['sound\/bolt09'] = 'rtp\/sound_bolt09.wav'; |
||
1160 | $res['sound\/bolt10'] = 'rtp\/sound_bolt10.wav'; |
||
1161 | $res['sound\/bow1'] = 'rtp\/sound_bow1'.$maker.'.wav'; |
||
1162 | $res['sound\/bow2'] = 'rtp\/sound_bow2'.$maker.'.wav'; |
||
1163 | $res['sound\/breast'] = 'rtp\/sound_breast.wav'; |
||
1164 | $res['sound\/breath'] = 'rtp\/sound_breath.wav'; |
||
1165 | $res['sound\/bump1'] = 'rtp\/sound_bump1.wav'; |
||
1166 | $res['sound\/bump2'] = 'rtp\/sound_bump2.wav'; |
||
1167 | $res['sound\/buzzer1'] = 'rtp\/sound_buzzer1'.$maker.'.wav'; |
||
1168 | $res['sound\/buzzer2'] = 'rtp\/sound_buzzer2'.$maker.'.wav'; |
||
1169 | $res['sound\/camera'] = 'rtp\/sound_camera.wav'; |
||
1170 | $res['sound\/cancel1'] = 'rtp\/sound_cancel1.wav'; |
||
1171 | $res['sound\/cancel2'] = 'rtp\/sound_cancel2.wav'; |
||
1172 | $res['sound\/cansel1'] = 'rtp\/sound_cansel1.wav'; |
||
1173 | $res['sound\/cansel2'] = 'rtp\/sound_cansel2.wav'; |
||
1174 | $res['sound\/cat'] = 'rtp\/sound_cat'.$maker.'.wav'; |
||
1175 | $res['sound\/chaos'] = 'rtp\/sound_chaos.wav'; |
||
1176 | $res['sound\/chicken'] = 'rtp\/sound_chicken'.$maker.'.wav'; |
||
1177 | $res['sound\/choice1'] = 'rtp\/sound_choice1.wav'; |
||
1178 | $res['sound\/choice2'] = 'rtp\/sound_choice2.wav'; |
||
1179 | $res['sound\/clap'] = 'rtp\/sound_clap.wav'; |
||
1180 | $res['sound\/clock'] = 'rtp\/sound_clock'.$maker.'.wav'; |
||
1181 | $res['sound\/close1'] = 'rtp\/sound_close1'.$maker.'.wav'; |
||
1182 | $res['sound\/close2'] = 'rtp\/sound_close2'.$maker.'.wav'; |
||
1183 | $res['sound\/cold1'] = 'rtp\/sound_cold1.wav'; |
||
1184 | $res['sound\/cold10'] = 'rtp\/sound_cold10.wav'; |
||
1185 | $res['sound\/cold11'] = 'rtp\/sound_cold11.wav'; |
||
1186 | $res['sound\/cold2'] = 'rtp\/sound_cold2.wav'; |
||
1187 | $res['sound\/cold3'] = 'rtp\/sound_cold3.wav'; |
||
1188 | $res['sound\/cold4'] = 'rtp\/sound_cold4.wav'; |
||
1189 | $res['sound\/cold5'] = 'rtp\/sound_cold5.wav'; |
||
1190 | $res['sound\/cold6'] = 'rtp\/sound_cold6.wav'; |
||
1191 | $res['sound\/cold7'] = 'rtp\/sound_cold7.wav'; |
||
1192 | $res['sound\/cold8'] = 'rtp\/sound_cold8.wav'; |
||
1193 | $res['sound\/cold9'] = 'rtp\/sound_cold9.wav'; |
||
1194 | $res['sound\/comp'] = 'rtp\/sound_comp.wav'; |
||
1195 | $res['sound\/confuse'] = 'rtp\/sound_confuse.wav'; |
||
1196 | $res['sound\/cow'] = 'rtp\/sound_cow'.$maker.'.wav'; |
||
1197 | $res['sound\/cursor1'] = 'rtp\/sound_cursor1'.$maker.'.wav'; |
||
1198 | $res['sound\/cursor2'] = 'rtp\/sound_cursor2'.$maker.'.wav'; |
||
1199 | $res['sound\/damage1'] = 'rtp\/sound_damage1'.$maker.'.wav'; |
||
1200 | $res['sound\/damage2'] = 'rtp\/sound_damage2'.$maker.'.wav'; |
||
1201 | $res['sound\/dark1'] = 'rtp\/sound_dark1'.$maker.'.wav'; |
||
1202 | $res['sound\/dark2'] = 'rtp\/sound_dark2'.$maker.'.wav'; |
||
1203 | $res['sound\/dark3'] = 'rtp\/sound_dark3'.$maker.'.wav'; |
||
1204 | $res['sound\/dark4'] = 'rtp\/sound_dark4'.$maker.'.wav'; |
||
1205 | $res['sound\/dark5'] = 'rtp\/sound_dark5'.$maker.'.wav'; |
||
1206 | $res['sound\/dark6'] = 'rtp\/sound_dark6.wav'; |
||
1207 | $res['sound\/decision1'] = 'rtp\/sound_decision1.wav'; |
||
1208 | $res['sound\/decision2'] = 'rtp\/sound_decision2.wav'; |
||
1209 | $res['sound\/decrease'] = 'rtp\/sound_decrease.wav'; |
||
1210 | $res['sound\/dog'] = 'rtp\/sound_dog'.$maker.'.wav'; |
||
1211 | $res['sound\/doorbell'] = 'rtp\/sound_doorbell.wav'; |
||
1212 | $res['sound\/down'] = 'rtp\/sound_down.wav'; |
||
1213 | $res['sound\/drip'] = 'rtp\/sound_drip.wav'; |
||
1214 | $res['sound\/earth1'] = 'rtp\/sound_earth1.wav'; |
||
1215 | $res['sound\/earth2'] = 'rtp\/sound_earth2.wav'; |
||
1216 | $res['sound\/earth3'] = 'rtp\/sound_earth3.wav'; |
||
1217 | $res['sound\/earth4'] = 'rtp\/sound_earth4.wav'; |
||
1218 | $res['sound\/earth5'] = 'rtp\/sound_earth5.wav'; |
||
1219 | $res['sound\/earth6'] = 'rtp\/sound_earth6.wav'; |
||
1220 | $res['sound\/earth7'] = 'rtp\/sound_earth7.wav'; |
||
1221 | $res['sound\/earth8'] = 'rtp\/sound_earth8.wav'; |
||
1222 | $res['sound\/earth9'] = 'rtp\/sound_earth9.wav'; |
||
1223 | $res['sound\/earth01'] = 'rtp\/sound_earth01.wav'; |
||
1224 | $res['sound\/earth02'] = 'rtp\/sound_earth02.wav'; |
||
1225 | $res['sound\/earth03'] = 'rtp\/sound_earth03.wav'; |
||
1226 | $res['sound\/earth04'] = 'rtp\/sound_earth04.wav'; |
||
1227 | $res['sound\/earth05'] = 'rtp\/sound_earth05.wav'; |
||
1228 | $res['sound\/earth06'] = 'rtp\/sound_earth06.wav'; |
||
1229 | $res['sound\/earth07'] = 'rtp\/sound_earth07.wav'; |
||
1230 | $res['sound\/earth08'] = 'rtp\/sound_earth08.wav'; |
||
1231 | $res['sound\/earth09'] = 'rtp\/sound_earth09.wav'; |
||
1232 | $res['sound\/earth10'] = 'rtp\/sound_earth10'.$maker.'.wav'; |
||
1233 | $res['sound\/earthquake1'] = 'rtp\/sound_earthquake1.wav'; |
||
1234 | $res['sound\/earthquake2'] = 'rtp\/sound_earthquake2.wav'; |
||
1235 | $res['sound\/ensnare'] = 'rtp\/sound_ensnare.wav'; |
||
1236 | $res['sound\/escape'] = 'rtp\/sound_escape.wav'; |
||
1237 | $res['sound\/evade1'] = 'rtp\/sound_evade1.wav'; |
||
1238 | $res['sound\/evade2'] = 'rtp\/sound_evade2.wav'; |
||
1239 | $res['sound\/evasion1'] = 'rtp\/sound_evasion1.wav'; |
||
1240 | $res['sound\/evasion2'] = 'rtp\/sound_evasion2.wav'; |
||
1241 | $res['sound\/explode1'] = 'rtp\/sound_explode1.wav'; |
||
1242 | $res['sound\/explode2'] = 'rtp\/sound_explode2.wav'; |
||
1243 | $res['sound\/explode3'] = 'rtp\/sound_explode3.wav'; |
||
1244 | $res['sound\/explode4'] = 'rtp\/sound_explode4.wav'; |
||
1245 | $res['sound\/explode5'] = 'rtp\/sound_explode5.wav'; |
||
1246 | $res['sound\/explode6'] = 'rtp\/sound_explode6.wav'; |
||
1247 | $res['sound\/explode7'] = 'rtp\/sound_explode7.wav'; |
||
1248 | $res['sound\/explosion1'] = 'rtp\/sound_explosion1.wav'; |
||
1249 | $res['sound\/explosion2'] = 'rtp\/sound_explosion2.wav'; |
||
1250 | $res['sound\/explosion3'] = 'rtp\/sound_explosion3.wav'; |
||
1251 | $res['sound\/explosion4'] = 'rtp\/sound_explosion4.wav'; |
||
1252 | $res['sound\/explosion5'] = 'rtp\/sound_explosion5.wav'; |
||
1253 | $res['sound\/explosion6'] = 'rtp\/sound_explosion6.wav'; |
||
1254 | $res['sound\/explosion7'] = 'rtp\/sound_explosion7.wav'; |
||
1255 | $res['sound\/failure1'] = 'rtp\/sound_failure1.wav'; |
||
1256 | $res['sound\/failure2'] = 'rtp\/sound_failure2.wav'; |
||
1257 | $res['sound\/fall1'] = 'rtp\/sound_fall1.wav'; |
||
1258 | $res['sound\/fall2'] = 'rtp\/sound_fall2.wav'; |
||
1259 | $res['sound\/fight1'] = 'rtp\/sound_fight1.wav'; |
||
1260 | $res['sound\/fight2'] = 'rtp\/sound_fight2.wav'; |
||
1261 | $res['sound\/flame1'] = 'rtp\/sound_flame1.wav'; |
||
1262 | $res['sound\/flame2'] = 'rtp\/sound_flame2.wav'; |
||
1263 | $res['sound\/flame3'] = 'rtp\/sound_flame3.wav'; |
||
1264 | $res['sound\/flame4'] = 'rtp\/sound_flame4.wav'; |
||
1265 | $res['sound\/flame5'] = 'rtp\/sound_flame5.wav'; |
||
1266 | $res['sound\/flame6'] = 'rtp\/sound_flame6.wav'; |
||
1267 | $res['sound\/flame7'] = 'rtp\/sound_flame7.wav'; |
||
1268 | $res['sound\/flame8'] = 'rtp\/sound_flame8.wav'; |
||
1269 | $res['sound\/flash1'] = 'rtp\/sound_flash1.wav'; |
||
1270 | $res['sound\/flash2'] = 'rtp\/sound_flash2.wav'; |
||
1271 | $res['sound\/flash3'] = 'rtp\/sound_flash3.wav'; |
||
1272 | $res['sound\/flush'] = 'rtp\/sound_flush.wav'; |
||
1273 | $res['sound\/fog1'] = 'rtp\/sound_fog1.wav'; |
||
1274 | $res['sound\/fog2'] = 'rtp\/sound_fog2.wav'; |
||
1275 | $res['sound\/glass'] = 'rtp\/sound_glass.wav'; |
||
1276 | $res['sound\/glassbreak'] = 'rtp\/sound_glassbreak.wav'; |
||
1277 | $res['sound\/gong'] = 'rtp\/sound_gong.wav'; |
||
1278 | $res['sound\/holy1'] = 'rtp\/sound_holy1.wav'; |
||
1279 | $res['sound\/holy2'] = 'rtp\/sound_holy2.wav'; |
||
1280 | $res['sound\/holy3'] = 'rtp\/sound_holy3.wav'; |
||
1281 | $res['sound\/holy4'] = 'rtp\/sound_holy4.wav'; |
||
1282 | $res['sound\/holy5'] = 'rtp\/sound_holy5.wav'; |
||
1283 | $res['sound\/holy6'] = 'rtp\/sound_holy6.wav'; |
||
1284 | $res['sound\/holy7'] = 'rtp\/sound_holy7.wav'; |
||
1285 | $res['sound\/holy8'] = 'rtp\/sound_holy8.wav'; |
||
1286 | $res['sound\/holy9'] = 'rtp\/sound_holy9.wav'; |
||
1287 | $res['sound\/horse'] = 'rtp\/sound_horse.wav'; |
||
1288 | $res['sound\/item1'] = 'rtp\/sound_item1.wav'; |
||
1289 | $res['sound\/item2'] = 'rtp\/sound_item2.wav'; |
||
1290 | $res['sound\/jump1'] = 'rtp\/sound_jump1.wav'; |
||
1291 | $res['sound\/jump2'] = 'rtp\/sound_jump2.wav'; |
||
1292 | $res['sound\/key'] = 'rtp\/sound_key.wav'; |
||
1293 | $res['sound\/kill1'] = 'rtp\/sound_kill1.wav'; |
||
1294 | $res['sound\/kill10'] = 'rtp\/sound_kill10.wav'; |
||
1295 | $res['sound\/kill11'] = 'rtp\/sound_kill11.wav'; |
||
1296 | $res['sound\/kill2'] = 'rtp\/sound_kill2.wav'; |
||
1297 | $res['sound\/kill3'] = 'rtp\/sound_kill3.wav'; |
||
1298 | $res['sound\/kill4'] = 'rtp\/sound_kill4.wav'; |
||
1299 | $res['sound\/kill5'] = 'rtp\/sound_kill5.wav'; |
||
1300 | $res['sound\/kill6'] = 'rtp\/sound_kill6.wav'; |
||
1301 | $res['sound\/kill7'] = 'rtp\/sound_kill7.wav'; |
||
1302 | $res['sound\/kill8'] = 'rtp\/sound_kill8.wav'; |
||
1303 | $res['sound\/kill9'] = 'rtp\/sound_kill9.wav'; |
||
1304 | $res['sound\/kiss'] = 'rtp\/sound_kiss.wav'; |
||
1305 | $res['sound\/knock'] = 'rtp\/sound_knock.wav'; |
||
1306 | $res['sound\/lion'] = 'rtp\/sound_lion.wav'; |
||
1307 | $res['sound\/monster1'] = 'rtp\/sound_monster1.wav'; |
||
1308 | $res['sound\/monster2'] = 'rtp\/sound_monster2.wav'; |
||
1309 | $res['sound\/movement'] = 'rtp\/sound_movement.wav'; |
||
1310 | $res['sound\/numbness1'] = 'rtp\/sound_numbness1.wav'; |
||
1311 | $res['sound\/numbness2'] = 'rtp\/sound_numbness2.wav'; |
||
1312 | $res['sound\/numbness3'] = 'rtp\/sound_numbness3.wav'; |
||
1313 | $res['sound\/open1'] = 'rtp\/sound_open1.wav'; |
||
1314 | $res['sound\/open2'] = 'rtp\/sound_open2.wav'; |
||
1315 | $res['sound\/phone'] = 'rtp\/sound_phone.wav'; |
||
1316 | $res['sound\/poison'] = 'rtp\/sound_poison.wav'; |
||
1317 | $res['sound\/pollen'] = 'rtp\/sound_pollen.wav'; |
||
1318 | $res['sound\/pop'] = 'rtp\/sound_pop.wav'; |
||
1319 | $res['sound\/power'] = 'rtp\/sound_power.wav'; |
||
1320 | $res['sound\/rain1'] = 'rtp\/sound_rain1.wav'; |
||
1321 | $res['sound\/rain2'] = 'rtp\/sound_rain2.wav'; |
||
1322 | $res['sound\/rebirth1'] = 'rtp\/sound_rebirth1.wav'; |
||
1323 | $res['sound\/rebirth2'] = 'rtp\/sound_rebirth2.wav'; |
||
1324 | $res['sound\/rebirth3'] = 'rtp\/sound_rebirth3.wav'; |
||
1325 | $res['sound\/recovery1'] = 'rtp\/sound_recovery1.wav'; |
||
1326 | $res['sound\/recovery2'] = 'rtp\/sound_recovery2.wav'; |
||
1327 | $res['sound\/recovery3'] = 'rtp\/sound_recovery3.wav'; |
||
1328 | $res['sound\/recovery4'] = 'rtp\/sound_recovery4.wav'; |
||
1329 | $res['sound\/recovery5'] = 'rtp\/sound_recovery5.wav'; |
||
1330 | $res['sound\/recovery6'] = 'rtp\/sound_recovery6.wav'; |
||
1331 | $res['sound\/recovery7'] = 'rtp\/sound_recovery7.wav'; |
||
1332 | $res['sound\/recovery8'] = 'rtp\/sound_recovery8.wav'; |
||
1333 | $res['sound\/refer_book'] = 'rtp\/sound_refer_book.wav'; |
||
1334 | $res['sound\/roar'] = 'rtp\/sound_roar.wav'; |
||
1335 | $res['sound\/sand storm'] = 'rtp\/sound_sand storm.wav'; |
||
1336 | $res['sound\/roar'] = 'rtp\/sound_roar.wav'; |
||
1337 | $res['sound\/sea1'] = 'rtp\/sound_sea1.wav'; |
||
1338 | $res['sound\/sea2'] = 'rtp\/sound_sea2.wav'; |
||
1339 | $res['sound\/sheep'] = 'rtp\/sound_sheep.wav'; |
||
1340 | $res['sound\/shot1'] = 'rtp\/sound_shot1.wav'; |
||
1341 | $res['sound\/shot2'] = 'rtp\/sound_shot2.wav'; |
||
1342 | $res['sound\/shot3'] = 'rtp\/sound_shot3.wav'; |
||
1343 | $res['sound\/silence'] = 'rtp\/sound_silence.wav'; |
||
1344 | $res['sound\/sleep'] = 'rtp\/sound_sleep.wav'; |
||
1345 | $res['sound\/sneezing'] = 'rtp\/sound_sneezing.wav'; |
||
1346 | $res['sound\/snoring'] = 'rtp\/sound_snoring.wav'; |
||
1347 | $res['sound\/song'] = 'rtp\/sound_song.wav'; |
||
1348 | $res['sound\/sonic1'] = 'rtp\/sound_sonic1.wav'; |
||
1349 | $res['sound\/sonic2'] = 'rtp\/sound_sonic2.wav'; |
||
1350 | $res['sound\/success1'] = 'rtp\/sound_success1.wav'; |
||
1351 | $res['sound\/success2'] = 'rtp\/sound_success2.wav'; |
||
1352 | $res['sound\/switch1'] = 'rtp\/sound_switch1.wav'; |
||
1353 | $res['sound\/switch2'] = 'rtp\/sound_switch2.wav'; |
||
1354 | $res['sound\/sword1'] = 'rtp\/sound_sword1.wav'; |
||
1355 | $res['sound\/sword2'] = 'rtp\/sound_sword2.wav'; |
||
1356 | $res['sound\/sword3'] = 'rtp\/sound_sword3.wav'; |
||
1357 | $res['sound\/teleport1'] = 'rtp\/sound_teleport1.wav'; |
||
1358 | $res['sound\/teleport2'] = 'rtp\/sound_teleport2.wav'; |
||
1359 | $res['sound\/thunder1'] = 'rtp\/sound_thunder1.wav'; |
||
1360 | $res['sound\/thunder10'] = 'rtp\/sound_thunder10.wav'; |
||
1361 | $res['sound\/thunder2'] = 'rtp\/sound_thunder2.wav'; |
||
1362 | $res['sound\/thunder3'] = 'rtp\/sound_thunder3.wav'; |
||
1363 | $res['sound\/thunder4'] = 'rtp\/sound_thunder4.wav'; |
||
1364 | $res['sound\/thunder5'] = 'rtp\/sound_thunder5.wav'; |
||
1365 | $res['sound\/thunder6'] = 'rtp\/sound_thunder6.wav'; |
||
1366 | $res['sound\/thunder7'] = 'rtp\/sound_thunder7.wav'; |
||
1367 | $res['sound\/thunder8'] = 'rtp\/sound_thunder8.wav'; |
||
1368 | $res['sound\/thunder9'] = 'rtp\/sound_thunder9.wav'; |
||
1369 | $res['sound\/tiger'] = 'rtp\/sound_tiger.wav'; |
||
1370 | $res['sound\/ugh'] = 'rtp\/sound_ugh.wav'; |
||
1371 | $res['sound\/up'] = 'rtp\/sound_up.wav'; |
||
1372 | $res['sound\/wall1'] = 'rtp\/sound_wall1.wav'; |
||
1373 | $res['sound\/wall2'] = 'rtp\/sound_wall2.wav'; |
||
1374 | $res['sound\/water1'] = 'rtp\/sound_water1.wav'; |
||
1375 | $res['sound\/water2'] = 'rtp\/sound_water2.wav'; |
||
1376 | $res['sound\/water3'] = 'rtp\/sound_water3.wav'; |
||
1377 | $res['sound\/water4'] = 'rtp\/sound_water4.wav'; |
||
1378 | $res['sound\/water5'] = 'rtp\/sound_water5.wav'; |
||
1379 | $res['sound\/water6'] = 'rtp\/sound_water6.wav'; |
||
1380 | $res['sound\/whistle'] = 'rtp\/sound_whistle.wav'; |
||
1381 | $res['sound\/wind1'] = 'rtp\/sound_wind1.wav'; |
||
1382 | $res['sound\/wind10'] = 'rtp\/sound_wind10.wav'; |
||
1383 | $res['sound\/wind11'] = 'rtp\/sound_wind11.wav'; |
||
1384 | $res['sound\/wind2'] = 'rtp\/sound_wind2.wav'; |
||
1385 | $res['sound\/wind3'] = 'rtp\/sound_wind3.wav'; |
||
1386 | $res['sound\/wind4'] = 'rtp\/sound_wind4.wav'; |
||
1387 | $res['sound\/wind5'] = 'rtp\/sound_wind5.wav'; |
||
1388 | $res['sound\/wind6'] = 'rtp\/sound_wind6.wav'; |
||
1389 | $res['sound\/wind7'] = 'rtp\/sound_wind7.wav'; |
||
1390 | $res['sound\/wind8'] = 'rtp\/sound_wind8.wav'; |
||
1391 | $res['sound\/wind9'] = 'rtp\/sound_wind9.wav'; |
||
1392 | $res['sound\/'] = 'rtp\/sound_.wav'; |
||
1393 | |||
1394 | //RM2k RTP |
||
1395 | $res['system\/blue'] = 'rtp\/system_blue.png'; |
||
1396 | $res['system\/bof2sys'] = 'rtp\/system_bof2sys.png'; |
||
1397 | $res['system\/bubbles'] = 'rtp\/system_bubbles.png'; |
||
1398 | $res['system\/don_system'] = 'rtp\/system_don_system.png'; |
||
1399 | $res['system\/ff2'] = 'rtp\/system_ff2.png'; |
||
1400 | $res['system\/ff3'] = 'rtp\/system_ff3.png'; |
||
1401 | $res['system\/incomsys'] = 'rtp\/system_incomsys.png'; |
||
1402 | $res['system\/lightbluesystem'] = 'rtp\/system_lightbluesystem.png'; |
||
1403 | $res['system\/lines'] = 'rtp\/system_lines.png'; |
||
1404 | $res['system\/lufia2'] = 'rtp\/system_lufia2.png'; |
||
1405 | $res['system\/mint'] = 'rtp\/system_mint.png'; |
||
1406 | $res['system\/ogre_battle'] = 'rtp\/system_ogre_battle.png'; |
||
1407 | $res['system\/purple'] = 'rtp\/system_purple.png'; |
||
1408 | $res['system\/red_future'] = 'rtp\/system_red_future.png'; |
||
1409 | $res['system\/redmenu3'] = 'rtp\/system_redmenu3.png'; |
||
1410 | $res['system\/royal'] = 'rtp\/system_royal.png'; |
||
1411 | $res['system\/sf2sys'] = 'rtp\/system_sf2sys.png'; |
||
1412 | $res['system\/shoddy'] = 'rtp\/system_shoddy.png'; |
||
1413 | $res['system\/system'] = 'rtp\/system_system.png'; |
||
1414 | $res['system\/system01'] = 'rtp\/system_system01.png'; |
||
1415 | $res['system\/system02'] = 'rtp\/system_system02.png'; |
||
1416 | $res['system\/system03'] = 'rtp\/system_system03.png'; |
||
1417 | $res['system\/system1'] = 'rtp\/system_system1.png'; |
||
1418 | $res['system\/system2'] = 'rtp\/system_system2.png'; |
||
1419 | $res['system\/system3'] = 'rtp\/system_system3.png'; |
||
1420 | $res['system\/system4'] = 'rtp\/system_system4.png'; |
||
1421 | $res['system\/windows01'] = 'rtp\/system_windows01.png'; |
||
1422 | $res['system\/windows02'] = 'rtp\/system_windows02.png'; |
||
1423 | $res['system\/'] = 'rtp\/system_.png'; |
||
1424 | |||
1425 | //System2 |
||
1426 | $res['system2\/system2a'] = 'rtp\/system2_system2a.png'; |
||
1427 | $res['system2\/system2b'] = 'rtp\/system2_system2b.png'; |
||
1428 | $res['system2\/system2c'] = 'rtp\/system2_system2c.png'; |
||
1429 | $res['system2\/'] = 'rtp\/system2_.png'; |
||
1430 | |||
1431 | //RM2k RTP |
||
1432 | $res['title\/title1'] = 'rtp\/title_title1'.$maker.'.png'; |
||
1433 | $res['title\/title2'] = 'rtp\/title_title2'.$maker.'.png'; |
||
1434 | $res['title\/title3'] = 'rtp\/title_title3'.$maker.'.png'; |
||
1435 | $res['title\/title4'] = 'rtp\/title_title4'.$maker.'.png'; |
||
1436 | |||
1437 | // $res[''] = ''; |
||
1438 | |||
1439 | foreach ($index as $ind) { |
||
1440 | $res[$ind->key] = $ind->id; |
||
1441 | } |
||
1442 | |||
1443 | $return = str_replace('\/', '/', \GuzzleHttp\json_encode($res, JSON_UNESCAPED_SLASHES)); |
||
1444 | |||
1445 | return $return; |
||
1446 | } |
||
1447 | } |
||
1448 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.