changeset 190:9d7d273a278f

Tornado machine.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 14:48:45 +0200
parents 0ab75da0c7aa
children 0b746c72cb5b
files gamelib/schematics.py
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/schematics.py	Sat May 12 14:43:35 2012 +0200
+++ b/gamelib/schematics.py	Sat May 12 14:48:45 2012 +0200
@@ -194,6 +194,22 @@
         " the gruesome details.")
 
 
+class TornadoMachine(Schematic):
+    NAME = "tornado machine"
+    COST = 7 * K
+    CATEGORIES = (cat.VEHICLE,)
+    PREREQUISITES = (
+        (research.Meteorology, 6),
+        (research.Physics, 5),
+        )
+
+    BASE_POWER = 40
+    POWER_INCREMENT = 8
+
+    FAILURE_TEXT = (
+        "Tornados! Dropping cows on you! Hardly conducive to mission success.")
+
+
 class MonsterBear(Schematic):
     NAME = "Giant Bear"
     COST = 10 * K