changeset 188:f78468bba66e

Spider grenade.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 14:32:01 +0200
parents 4f5de85fd1af
children 0ab75da0c7aa
files gamelib/schematics.py
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/schematics.py	Sat May 12 14:14:50 2012 +0200
+++ b/gamelib/schematics.py	Sat May 12 14:32:01 2012 +0200
@@ -156,6 +156,25 @@
     POWER_INCREMENT = 20
 
 
+class SpiderGrenade(Schematic):
+    NAME = "spider grenade"
+    COST = 500
+    CATEGORIES = (cat.HAND_WEAPON,)
+    PREREQUISITES = (
+        (research.Biogenetics, 3),
+        (research.Physics, 2),
+        )
+
+    BASE_POWER = 22
+    POWER_INCREMENT = 2
+
+    PRODUCTION_RELIABILITY = 0.6
+
+    FAILURE_TEXT = (
+        "Explosions full of spiders. What could possibly go wrong? Oh god!"
+        " They're everywhere! EVERYWHERE! Get them off me!")
+
+
 class MonsterBear(Schematic):
     NAME = "Giant Bear"
     COST = 10 * K