comparison 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
comparison
equal deleted inserted replaced
20:5208a2a2668d 21:f9211d1917b7
1 <?
2
3 // Multi-stack item fixups
4 $fixItemTable = array(
5 "(purple|green) gloves" => 'a ${1} glove',
6 "bracelet mades of green crystal" => "bracelet made of green crystal",
7 "alchemist moulded rings" => "alchemist moulded ring",
8
9 // Generic rings
10 "(heavy black metal|steel) rings" => "a ${1} ring",
11
12 // Damiens
13 "arm protectors called Damien \(\S+\)" => "an arm protector called Damien (${1})",
14
15 // Containers
16 "white cloth packs for holding salves" => "white cloth pack for holding salves",
17 "(small|HUGE) shiny boxes for storing minerals" => 'a ${1} shiny box for storing minerals',
18 "(small|HUGE) sturdy packs for storing potions" => 'a ${1} sturdy pack for storing potions',
19 );
20
21
22 $fixNumbers = array(
23 "one" => 1, "two" => 2, "three" => 3, "four" => 4,
24 "five" => 5, "six" => 6, "seven" => 7, "eight" => 8,
25 "nine" => 9, "ten" => 10
26 );
27
28 ?>