annotate itemfixes.inc.php @ 21:f9211d1917b7

Moved item fixup data to separate file.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 11 Jan 2011 13:32:55 +0200
parents
children c0dec130ce74
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 <?
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 // Multi-stack item fixups
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 $fixItemTable = array(
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 "(purple|green) gloves" => 'a ${1} glove',
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 "bracelet mades of green crystal" => "bracelet made of green crystal",
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 "alchemist moulded rings" => "alchemist moulded ring",
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 // Generic rings
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 "(heavy black metal|steel) rings" => "a ${1} ring",
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 // Damiens
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 "arm protectors called Damien \(\S+\)" => "an arm protector called Damien (${1})",
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 // Containers
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 "white cloth packs for holding salves" => "white cloth pack for holding salves",
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 "(small|HUGE) shiny boxes for storing minerals" => 'a ${1} shiny box for storing minerals',
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18 "(small|HUGE) sturdy packs for storing potions" => 'a ${1} sturdy pack for storing potions',
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 );
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 $fixNumbers = array(
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 "one" => 1, "two" => 2, "three" => 3, "four" => 4,
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24 "five" => 5, "six" => 6, "seven" => 7, "eight" => 8,
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 "nine" => 9, "ten" => 10
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26 );
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27
f9211d1917b7 Moved item fixup data to separate file.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28 ?>