mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 11:05:50 +01:00
Merge pull request #1419 from OrbisAnima/orb-cargo-love
Added 3 new crates to cargo:
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/datum/supply_packs/hydro/goat
|
||||
/datum/supply_packs/hydro/birds
|
||||
name = "Birds Crate"
|
||||
cost = 200 //You're getting 22 birds. Of course it's going to be a lot!
|
||||
containertype = /obj/structure/largecrate/birds
|
||||
containername = "Bird crate"
|
||||
access = access_hydroponics
|
||||
access = access_hydroponics
|
||||
@@ -5,4 +5,21 @@
|
||||
)
|
||||
containertype = /obj/structure/largecrate
|
||||
containername = "NT Humvee Crate"
|
||||
cost = 100
|
||||
cost = 100
|
||||
|
||||
/datum/supply_packs/recreation/restraints
|
||||
name = "Recreational Restraints"
|
||||
contains = list(
|
||||
/obj/item/clothing/mask/muzzle,
|
||||
/obj/item/clothing/glasses/sunglasses/blindfold,
|
||||
/obj/item/weapon/handcuffs/fuzzy,
|
||||
/obj/item/weapon/tape_roll,
|
||||
/obj/item/stack/cable_coil/random,
|
||||
/obj/item/clothing/accessory/collar/shock,
|
||||
/obj/item/clothing/suit/straight_jacket,
|
||||
/obj/item/weapon/legcuffs,
|
||||
/obj/item/weapon/melee/fluff/holochain/mass
|
||||
)
|
||||
containertype = /obj/structure/closet/crate
|
||||
containername = "Restraints crate"
|
||||
cost = 30
|
||||
@@ -40,4 +40,19 @@
|
||||
)
|
||||
cost = 100
|
||||
containertype = /obj/structure/largecrate
|
||||
containername = "Exploration Dune Buggy Crate"
|
||||
containername = "Exploration Dune Buggy Crate"
|
||||
|
||||
/datum/supply_packs/sci/pred
|
||||
name = "Dangerous Predator crate"
|
||||
cost = 40
|
||||
containertype = /obj/structure/largecrate/animal/pred
|
||||
containername = "Dangerous Predator crate"
|
||||
access = access_xenobiology
|
||||
|
||||
/datum/supply_packs/sci/pred
|
||||
name = "EXTREMELY Dangerous Predator crate"
|
||||
cost = 200
|
||||
containertype = /obj/structure/largecrate/animal/dangerous
|
||||
containername = "EXTREMELY Dangerous Predator crate"
|
||||
access = access_xenobiology
|
||||
contraband = 1
|
||||
@@ -35,4 +35,39 @@
|
||||
"<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;3,
|
||||
/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;0.5,
|
||||
/mob/living/simple_animal/hostile/bear/brown;0.5,
|
||||
/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)
|
||||
..()
|
||||
@@ -283,7 +283,6 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie
|
||||
item_state = "holochain_mob"
|
||||
|
||||
flags = CONDUCT | NOBLOODY
|
||||
no_attack_log = 1 //if you want to turn on the attack log for this, comment/delete this line. Orbis.
|
||||
slot_flags = SLOT_BELT
|
||||
force = 10
|
||||
throwforce = 3
|
||||
@@ -291,6 +290,13 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie
|
||||
damtype = HALLOSS
|
||||
attack_verb = list("flogged", "whipped", "lashed", "disciplined", "chastised", "flayed")
|
||||
|
||||
//General use
|
||||
/obj/item/weapon/melee/fluff/holochain/mass
|
||||
desc = "A mass produced version of the original. It has faux leather and an aluminium base, but still stings like the original."
|
||||
force = 8
|
||||
attack_verb = list("flogged", "whipped", "lashed", "flayed")
|
||||
|
||||
|
||||
// joey4298:Emoticon
|
||||
/obj/item/device/fluff/id_kit_mime
|
||||
name = "Mime ID reprinter"
|
||||
|
||||
Reference in New Issue
Block a user