Added 3 new crates to cargo:

Recreation: - Recreational Restraints, all the kind of stuff you might need to restrain someone but still showing you care, whip included.
Science: - Dangerous Predator Crate, contains a random common predator for science analisys, a system that might come in the future!
(Contraband) Extremely Dangerous Predator Crate, Contains a random yet quite mortal predator, for analiisys only by the bravest or fooliest people in the crew.
This commit is contained in:
OrbisAnima
2017-04-20 20:48:27 -03:00
parent 427966638f
commit 3efabaf2ab
5 changed files with 79 additions and 6 deletions

View File

@@ -35,4 +35,41 @@
"<span class='notice'>You hear splitting wood.</span>")
qdel(src)
else
return attack_hand(user)
return attack_hand(user)
/obj/structure/largecrate/animal/pred
name = "Predator carrier"
held_type = /mob/living/simple_animal/catgirl
/obj/structure/largecrate/animal/pred/New() //This is nessesary to get a random one each time.
held_type = pick(/mob/living/simple_animal/hostile/bee,
/mob/living/simple_animal/catgirl,
/mob/living/simple_animal/catgirl,
/mob/living/simple_animal/catgirl,
/mob/living/simple_animal/hostile/frog,
/mob/living/simple_animal/horse,
/mob/living/simple_animal/hostile/panther,
/mob/living/simple_animal/hostile/snake,
/mob/living/simple_animal/hostile/wolf,
/mob/living/simple_animal/hostile/bear,
/mob/living/simple_animal/hostile/bear/brown,
/mob/living/simple_animal/hostile/carp,
/mob/living/simple_animal/hostile/mimic)
..()
/obj/structure/largecrate/animal/dangerous
name = "Dangerous Predator carrier"
held_type = /mob/living/simple_animal/hostile/alien
/obj/structure/largecrate/animal/dangerous/New() //This is nessesary to get a random one each time.
held_type = pick(/mob/living/simple_animal/hostile/carp/pike,
/mob/living/simple_animal/hostile/deathclaw,
/mob/living/simple_animal/hostile/dino,
/mob/living/simple_animal/hostile/alien,
/mob/living/simple_animal/hostile/alien/drone,
/mob/living/simple_animal/hostile/alien/sentinel,
/mob/living/simple_animal/hostile/alien/queen)
..()