summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2014-04-23 23:55:49 +0200
committerShmuale Mark <shm.mark@gmail.com>2014-04-30 02:54:56 -0400
commit27581562e7e0154cc7ac97af3925bc700d7d89b9 (patch)
tree204907280fa74d7471fee00367bd90e6b9ab07c9 /crawl-ref/source/util
parentce54174c6db7c8233c180256df4a0fb97caa9abe (diff)
downloadcrawl-ref-27581562e7e0154cc7ac97af3925bc700d7d89b9.tar.gz
crawl-ref-27581562e7e0154cc7ac97af3925bc700d7d89b9.zip
Remove ARTP_METABOLISM
Convert existing ones into a negative level of ARTP_STEALTH, or in the case of Black Knight's barding, to rPois (mostly for flavor reasons).
Diffstat (limited to 'crawl-ref/source/util')
-rwxr-xr-xcrawl-ref/source/util/art-data.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/util/art-data.pl b/crawl-ref/source/util/art-data.pl
index 933b2a2489..76532aff0f 100755
--- a/crawl-ref/source/util/art-data.pl
+++ b/crawl-ref/source/util/art-data.pl
@@ -45,7 +45,6 @@ my %field_type = (
FLY => "bool",
LIFE => "bool",
MAGIC => "num",
- METAB => "num",
HP => "num",
MP => "num",
MUTATE => "bool",
@@ -86,6 +85,8 @@ my %field_type = (
plus2 => "num",
base_type => "enum",
sub_type => "enum",
+
+ unused => "unused",
);
my @field_list = keys(%field_type);
@@ -483,7 +484,7 @@ my @art_order = (
"{", "BRAND", "AC", "EV", "STR", "INT", "DEX", "\n",
"FIRE", "COLD", "ELEC", "POISON", "LIFE", "MAGIC", "\n",
"SEEINV", "INV", "FLY", "BLINK", "BERSERK", "NOISES", "\n",
- "NOSPELL", "RND_TELE", "NOTELEP", "ANGRY", "METAB", "\n",
+ "NOSPELL", "RND_TELE", "NOTELEP", "ANGRY", "unused", "\n",
"MUTATE", "ACC", "DAM", "CURSED", "STEALTH", "MP", "\n",
"BASE_DELAY", "HP", "CLARITY", "BASE_ACC", "BASE_DAM", "\n",
"RMSL", "FOG", "REGEN", "NO_UPGRADE", "\n",