# HG changeset patch # User Jeremy Thurgood # Date 1336598404 -7200 # Node ID a8a46c14d46789cb0fc7f4eaf301a1d96a32605c # Parent ef63532cac1388541558d02fe998ceb188b28b14 Marine beasts! diff -r ef63532cac13 -r a8a46c14d467 gamelib/schematics.py --- a/gamelib/schematics.py Wed May 09 23:10:29 2012 +0200 +++ b/gamelib/schematics.py Wed May 09 23:20:04 2012 +0200 @@ -15,6 +15,8 @@ 'DOOMSDAY_DEVICE', 'PATHOGEN', 'MIND_CONTROL', + 'BEAST', + 'AQUATIC', ) @@ -114,3 +116,23 @@ PREREQUISITES = ( (research.Psychology, 2), ) + + +class GiantSquid(Schematic): + NAME = "giant squid" + COST = 50000 + CATEGORIES = (cat.BEAST, cat.AQUATIC) + PREREQUISITES = ( + (research.MarineBiology, 20), + (research.Biogenetics, 15), + ) + + +class SharksWithFrickinLasers(Schematic): + NAME = "sharks with frickin' lasers" + COST = 20000 + CATEGORIES = (cat.BEAST, cat.AQUATIC) + PREREQUISITES = ( + (research.MarineBiology, 10), + (research.Lasers, 7), + )