# HG changeset patch # User Jeremy Thurgood # Date 1336826615 -7200 # Node ID 0ab75da0c7aafdfb258186d522fc593351390582 # Parent f78468bba66effb162e79d120323c46e58543646 Cybernetic implants. diff -r f78468bba66e -r 0ab75da0c7aa gamelib/schematics.py --- a/gamelib/schematics.py Sat May 12 14:32:01 2012 +0200 +++ b/gamelib/schematics.py Sat May 12 14:43:35 2012 +0200 @@ -175,6 +175,25 @@ " They're everywhere! EVERYWHERE! Get them off me!") +class CyberneticImplants(Schematic): + NAME = "cybernetic implants" + COST = 1500 + CATEGORIES = (cat.HAND_WEAPON, cat.INTELLIGENCE) + PREREQUISITES = ( + (research.MedicalExperiments, 5), + (research.Robotics, 5), + ) + + BASE_POWER = 25 + POWER_INCREMENT = 5 + + PRODUCTION_RELIABILITY = 0.9 + + FAILURE_TEXT = ( + "Exciting buffer overflows in your neural interface. I'll spare you" + " the gruesome details.") + + class MonsterBear(Schematic): NAME = "Giant Bear" COST = 10 * K