changeset 193:9e86ed5343d9

Mind control ray.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 15:26:09 +0200
parents 57bf6a5e31cb
children cb57ccc8f119
files gamelib/schematics.py
diffstat 1 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/schematics.py	Sat May 12 15:18:28 2012 +0200
+++ b/gamelib/schematics.py	Sat May 12 15:26:09 2012 +0200
@@ -144,6 +144,24 @@
         " nonsense, which the proofreaders didn't catch until too late.")
 
 
+class MindControlRay(Schematic):
+    NAME = "mind control ray"
+    COST = 4 * K
+    CATEGORIES = (cat.MIND_CONTROL,)
+    PREREQUISITES = (
+        (research.Psychology, 6),
+        (research.MedicalExperiments, 6),
+        )
+
+    BASE_POWER = 40
+    POWER_INCREMENT = 6
+
+    FAILURE_TEXT = (
+        "The frequency tuner on the mind control ray was slightly"
+        " miscalibrated. A new genre of glitterpop was born, but this"
+        " entirely fails to advance your shadowy agenda.")
+
+
 class GiantSquid(Schematic):
     NAME = "giant squid"
     COST = 50 * K