mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Wristwatches (#29961)
* wristwatch * added wristwatches the the regular maintspawner loot table * watch for tourists * observer get it too lol, the red strap is back! * Update code/modules/maps/spawners/spawners.dm * more watches * tadaa * oh right * fixed conflicts
This commit is contained in:
@@ -42,6 +42,7 @@
|
||||
ARCHAEO_PEN=100,
|
||||
ARCHAEO_LIGHTER=100,
|
||||
ARCHAEO_BOX=100,
|
||||
ARCHAEO_POCKETWATCH=75,
|
||||
ARCHAEO_DICE=75,
|
||||
ARCHAEO_COIN=75,
|
||||
ARCHAEO_UNKNOWN=75,
|
||||
|
||||
@@ -1084,6 +1084,21 @@
|
||||
/datum/find/supershard/spawn_item()
|
||||
return new /obj/item/supermatter_splinter
|
||||
|
||||
/datum/find/pocketwatch
|
||||
find_ID = ARCHAEO_POCKETWATCH
|
||||
apply_prefix = FALSE
|
||||
apply_material_decorations = TRUE
|
||||
apply_image_decorations = TRUE
|
||||
anomaly_factor = 1 // image decorations mean +1
|
||||
responsive_reagent = IRON
|
||||
|
||||
/datum/find/pocketwatch/spawn_item()
|
||||
if(prob(5))
|
||||
anomaly_factor++
|
||||
return new /obj/item/pocketwatch/luna_dial
|
||||
else
|
||||
return new /obj/item/pocketwatch
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Strange rocks
|
||||
|
||||
|
||||
Reference in New Issue
Block a user