changeset 189:0ab75da0c7aa

Cybernetic implants.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 14:43:35 +0200
parents f78468bba66e
children 9d7d273a278f
files gamelib/schematics.py
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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