diff gamelib/schematics.py @ 198:df350c2f8c10

Add another mission
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 17:36:15 +0200
parents 9e86ed5343d9
children 4159e34d7310
line wrap: on
line diff
--- a/gamelib/schematics.py	Sat May 12 17:27:52 2012 +0200
+++ b/gamelib/schematics.py	Sat May 12 17:36:15 2012 +0200
@@ -21,6 +21,7 @@
     'AI',
     'COUNTERMEASURE',
     'SPACE',
+    'WEATHER_MACHINE',
     )
 
 K = 1000
@@ -216,7 +217,7 @@
 class TornadoMachine(Schematic):
     NAME = "tornado machine"
     COST = 7 * K
-    CATEGORIES = (cat.VEHICLE,)
+    CATEGORIES = (cat.VEHICLE, cat.WEATHER_MACHINE)
     PREREQUISITES = (
         (research.Meteorology, 6),
         (research.Physics, 5),
@@ -365,7 +366,7 @@
 class WeatherControlStation(Schematic):
     NAME = "weather control station"
     COST = 15 * M
-    CATEGORIES = (cat.DOOMSDAY_DEVICE, cat.SPACE)
+    CATEGORIES = (cat.DOOMSDAY_DEVICE, cat.SPACE, cat.WEATHER_MACHINE)
     PREREQUISITES = (
         (SpySatellite, 3),
         (research.Lasers, 5),