module SpoonEnYo { imports { Base } /************************ MEDICAL STUFF LOW LEVEL ************************/ recipe Dissect a Frog { Frog, Thread, destroy Scalpel, keep Needle, keep [Recipe.GetItemTypes.SharpKnife], Result:Scalpel, Time:400.0, OnGiveXP:Recipe.OnGiveXP.DoctorOne, Category:Health, AnimNode:VehicleWorkOnTire, Prop1:Scalpel, Prop2:Frog, CanBeDoneFromFloor :TRUE, } recipe Dissect a Small Animal { Smallanimalmeat/Smallbirdmeat/Rabbitmeat, Thread;2, destroy Scalpel, keep Needle, keep [Recipe.GetItemTypes.SharpKnife], Result:Scalpel, Time:600.0, OnGiveXP:Recipe.OnGiveXP.DoctorTwo, SkillRequired:Doctor=2, Category:Health, AnimNode:VehicleWorkOnTire, Prop1:Scalpel, Prop2:Smallanimalmeat, CanBeDoneFromFloor :TRUE, } recipe Dissect a Zombie { CorpseMale/CorpseFemale, Thread;3, keep Needle, destroy Scalpel, keep [Recipe.GetItemTypes.SharpKnife], Result:Scalpel, Time:800.0, OnGiveXP:Recipe.OnGiveXP.DoctorThree, SkillRequired:Doctor=3, Category:Health, AnimNode:VehicleWorkOnTire, Prop1:Scalpel, Prop2:CorpseMale, CanBeDoneFromFloor :TRUE, } recipe Cut Your Right Hand { keep [Recipe.GetItemTypes.SharpKnife], RippedSheets, Result:RippedSheetsDirty, Time:55.0, OnCreate:CutYourselfR_OnCreate, Category:Health, AnimNode:Disassemble, } recipe Cut Your Left Hand { keep [Recipe.GetItemTypes.SharpKnife], RippedSheets, Result:RippedSheetsDirty, Time:55.0, OnCreate:CutYourselfL_OnCreate, Category:Health, AnimNode:Disassemble, } recipe Stab Yourself In The Belly { keep [Recipe.GetItemTypes.SharpKnife], RippedSheets, Result:RippedSheetsDirty, Time:55.0, OnCreate:StabYourself_OnCreate, Category:Health, Sound:scream1, AnimNode:Disassemble, } recipe Play Russian Roulette { keep Revolver_Long, destroy Bullets44=3, destroy RippedSheets, Result:RippedSheets, Time:10.0, OnCreate:RussianRoulette_OnCreate, Category:Misc, AnimNode:TakePills, Prop1:Revolver_Long, } }