mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-30 03:55:33 +00:00
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:
@@ -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)
|
||||
..()
|
||||
Reference in New Issue
Block a user