mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 20:59:56 +01:00
bb85116cb9
* moved loot tables to element * fixes * fixes, and make trashpiles handle single search like loot piles * cleanup * var * proper src * generic replies * typo
18 lines
763 B
Plaintext
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
|
|
)
|