descriptions of too-large javelins and nets into items.txt.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3111 c06c8d41-db1a-0410-9941-cceddc491573
24KZBI2SCCLXNI7RFUHHYASEN6CVCRI3H35XK4VMT7KU3OP25MFQC
34LEIRCHNNLI64TWLKUMVOYNGGJSFSSL7VZ4UPLS4ZG7BUTEV3PQC
HLW74AJBUWPHARW2OQKLPMIEPBUYSEZCTXUL7LEO4JM25RUJHBFAC
VMIKJGB6CSFVZS6VMQNP33ALEDEO2TARDICVGDJFMZ4WSPTV3LFAC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
5V47S4NNTHWTSAHV3YLO2VGH7JTUIYJ3GBPDN5ZM4UQALT2ZEXDQC
HYS3HXTXATFPN7GLN3WBGDCP22UT2D3JBVUS7SP5FE7L54TDCJRQC
XCEZ7OA2INNPSYNAB5U6JB7XNDAD5BKU26YLFPPZ3SEESFZKADQAC
4UXFU3FZOCBSLDQ4S7MJKAE2H7VUHCNRDQMIY6NJ3PHYXWNGISDQC
RGY2525RQH7SSGM6ZVI7CZL4WMNFZK2WRABOSIWRKQYYOU2RWN4QC
RPOZZWKG5GLPHVZZ7ZKMKS64ZMV2LDCQSARBJFJ6FZOTOKCQO7FAC
VCG3BRIYRTNNWYC3LOXD6KFGXOX37HAFW2HNV7WXVG2V7EUHLDZQC
I7QLYOTE6DLQZM7YWUWYLKHRJRB2A3STQ42ALSRGQICEWKD2QTEQC
case MI_STONE:
description += "A stone. It can be thrown by hand "
"or fired with a sling. ";
break;
case MI_ARROW:
description += "An arrow, to be shot with a bow. ";
break;
case MI_NEEDLE:
description += "A needle. It can be fired with a blowgun. ";
break;
case MI_BOLT:
description += "A crossbow bolt. ";
break;
case MI_DART:
description += "A small throwing weapon. "
"It can also be fired from a hand crossbow.";
break;
case MI_LARGE_ROCK:
description += "A rock, used by giants as a missile. ";
break;
case MI_SLING_BULLET:
description += "A small heavy projectile made of lead. "
"It can be fired from a sling.";
break;
case MI_JAVELIN:
description += "A long, light polearm that can be thrown by hand. ";
if (!is_throwable(item, you.body_size()))
description += "Unfortunately, it is too long and awkward "
"for you to use.";
break;
case MI_THROWING_NET:
description += "A throwing net as used by gladiators. ";
if (!is_throwable(item, you.body_size()))
description += "Unfortunately, it is too large and awkward "
"for you to use. ";
if (item.plus < 0)
std::string how;
if (item.plus > 1)
how = "brand-new";
else if (item.plus < 0)
description += "It looks ";
description += how;
description += ".";
}
else if (item.plus > 1)
description += "The net looks brand-new!";
break;
case MI_NONE: // was eggplant
description += "A purple vegetable. "
"The presence of this object in the game indicates a bug. ";
break;
default:
DEBUGSTR("Unknown ammo type");
break;
description += "It looks ";
description += how;
description += ".";
A long, light polearm that can be thrown by hand.
A long, light polearm that can be thrown by hand. {{
if you.race() == "Halfling"
or you.race() == "Gnome"
or you.race() == "Kobold"
or you.race() == "Spriggan"
then
return "Unfortunately, it is too long and awkward for you to use."
else
return ""
end
}}
A throwing net as used by gladiators.
A throwing net as used by gladiators. {{
if you.race() == "Halfling"
or you.race() == "Gnome"
or you.race() == "Kobold"
or you.race() == "Spriggan"
then
return "Unfortunately, it is too large and awkward for you to use."
else
return ""
end
}}