Files
VOREStation/code/datums/elements/lootable/misc.dm
T
Will bb85116cb9 Looting element for trash piles and more (#17896)
* moved loot tables to element

* fixes

* fixes, and make trashpiles handle single search like loot piles

* cleanup

* var

* proper src

* generic replies

* typo
2025-07-16 18:50:22 -04:00

18 lines
763 B
Plaintext

// Contains old mediciation, most of it unidentified and has a good chance of being useless.
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/datum/element/lootable/expired_medicine
chance_uncommon = 0
chance_rare = 0
common_loot = list(
/obj/random/unidentified_medicine/old_medicine
)
// Like the above but has way better odds, in exchange for being in a place still inhabited (or was recently).
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/datum/element/lootable/fresh_medicine
chance_uncommon = 0
chance_rare = 0
common_loot = list(
/obj/random/unidentified_medicine/fresh_medicine
)