mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
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
|
|
)
|