mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 13:20:47 +01:00
7f4de78573
* this compiles * more edits * Upports OP21's immovable rod Makes it NOT shit. * actually enable this lol * CLANG * we all fall down * break it * stairs * bye async * makes doorcrushes less lethal * more unluck! * dice and stumble vore * major version * Update clang.dm * More tweaks. BS Cracker Makes bluespace cracker better code quality too * Cut down on lists here * Adds the traits * glass shapnel * Update unlucky.dm * Modular Shock * Charger and thrown * Defib nat 1 * Gravity Falls * gibby * no longer gib, just hurt a LOT * Better Washer * Update washing_machine.dm * Even less jank * Moves some stuff around * linters * Update unlucky.dm * Table stubbing * fixes mirror break, evil only * PIPEBOMB * Update negative.dm * Update mail.dm * glasses fly off your face if you fall * Update unlucky.dm * evil beaker and spooky events in the dark * Evil beaker spilling * Unlucky people have custom maint loot * Get sick while searching * Update _lootable.dm * whoop * Update _lootable.dm * washer will always wash * Lowered to 5 * ash * Update areas.dm * get knocked * picking up items * Dice * Update unlucky.dm * Update code/game/objects/items/devices/defib.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Update code/modules/economy/vending.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Update code/game/area/areas.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Update code/datums/components/traits/unlucky.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Update code/datums/components/traits/unlucky.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Update code/datums/components/traits/unlucky.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Update code/datums/components/traits/unlucky.dm Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> * Nicer damage * these * this * mini DCS update * Excludes * Proper inherit * Update unlucky.dm * Update code/datums/components/traits/unlucky.dm * These * thes too * user * no hardrefs * only these 2 --------- Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com>
83 lines
2.5 KiB
Plaintext
83 lines
2.5 KiB
Plaintext
// Contains loads of different types of boxes, which may have items inside!
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
/datum/element/lootable/boxes
|
|
|
|
unlucky_loot = list(
|
|
/obj/item/grenade/flashbang/clusterbang/primed,
|
|
/obj/item/storage/box/old_syringes,
|
|
/obj/item/storage/box/donut/empty,
|
|
/obj/item/grenade/smokebomb/primed,
|
|
/obj/item/storage/box,
|
|
/obj/item/storage/box/cups,
|
|
/obj/item/trash/candle,
|
|
/obj/item/trash/candy,
|
|
/obj/item/trash/candy/proteinbar,
|
|
/obj/item/trash/candy/gums,
|
|
/obj/item/trash/cheesie,
|
|
/obj/item/trash/chips,
|
|
/obj/item/trash/chips/bbq,
|
|
/obj/item/trash/liquidfood,
|
|
/obj/item/trash/pistachios,
|
|
/obj/item/trash/plate,
|
|
/obj/item/trash/popcorn,
|
|
/obj/item/trash/raisins,
|
|
/obj/item/trash/semki,
|
|
/obj/item/trash/snack_bowl,
|
|
/obj/item/trash/sosjerky,
|
|
/obj/item/trash/syndi_cakes,
|
|
/obj/item/trash/tastybread,
|
|
/obj/item/trash/coffee,
|
|
/obj/item/trash/tray,
|
|
/obj/item/trash/unajerky,
|
|
/obj/item/trash/waffles,
|
|
/obj/item/spacecash/c1,
|
|
/obj/item/card/emag_broken,
|
|
/obj/effect/decal/remains/lizard,
|
|
/obj/effect/decal/remains/mouse,
|
|
/obj/effect/decal/remains/robot,
|
|
/obj/item/pizzabox/old,
|
|
/obj/item/paper/crumpled
|
|
)
|
|
|
|
common_loot = list(
|
|
/obj/item/storage/box,
|
|
/obj/item/storage/box/beakers,
|
|
/obj/item/storage/box/botanydisk,
|
|
/obj/item/storage/box/cups,
|
|
/obj/item/storage/box/disks,
|
|
/obj/item/storage/box/donkpockets,
|
|
/obj/item/storage/box/donut,
|
|
/obj/item/storage/box/donut/empty,
|
|
/obj/item/storage/box/evidence,
|
|
/obj/item/storage/box/lights/mixed,
|
|
/obj/item/storage/box/lights/tubes,
|
|
/obj/item/storage/box/lights/bulbs,
|
|
/obj/item/storage/box/injectors,
|
|
/obj/item/storage/box/masks,
|
|
/obj/item/storage/box/ids,
|
|
/obj/item/storage/box/mousetraps,
|
|
/obj/item/storage/box/syringes,
|
|
/obj/item/storage/box/survival,
|
|
/obj/item/storage/box/gloves,
|
|
/obj/item/storage/box/PDAs
|
|
)
|
|
|
|
uncommon_loot = list(
|
|
/obj/item/storage/box/sinpockets,
|
|
/obj/item/ammo_magazine/ammo_box/b12g/practice,
|
|
/obj/item/ammo_magazine/ammo_box/b12g/blank,
|
|
/obj/item/storage/box/smokes,
|
|
/obj/item/storage/box/metalfoam,
|
|
/obj/item/storage/box/handcuffs,
|
|
/obj/item/storage/box/seccarts,
|
|
/obj/item/storage/box/old_syringes,
|
|
)
|
|
|
|
rare_loot = list(
|
|
/obj/item/storage/box/flashbangs,
|
|
/obj/item/storage/box/empslite,
|
|
/obj/item/ammo_magazine/ammo_box/b12g/flash,
|
|
/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
|
|
/obj/item/storage/box/teargas
|
|
)
|