mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 13:10:02 +01:00
## About The Pull Request - null all GAGS vars for brass wirecutters as it doesn't use GAGS - Repath `mothbomb.dmi` so it actually gets deployed with the server - Generate map icons - Fix 150+ crafting material parity failures - Fix airlock lights not working - Fix certain species missing eyes ## Why It's Good For The Game Don't like red X ## Proof Of Testing If this PR is green check then you Know
23 lines
941 B
Plaintext
23 lines
941 B
Plaintext
/obj/item/crucifix
|
|
name = "ornate crucifix"
|
|
desc = "An ornate golden crucifix, adorned with various gemstones and tiny carvings. For some reason, it always feels warm to the touch."
|
|
icon = 'modular_skyrat/modules/modular_items/icons/crucifix.dmi'
|
|
icon_state = "cross_ornate"
|
|
lefthand_file = 'modular_skyrat/modules/modular_items/icons/cross_left.dmi'
|
|
righthand_file = 'modular_skyrat/modules/modular_items/icons/cross_right.dmi'
|
|
force = 5 //Gem-encrusted and reinforced with GOD
|
|
throw_speed = 3
|
|
throw_range = 4
|
|
throwforce = 10
|
|
w_class = WEIGHT_CLASS_TINY
|
|
custom_materials = list(/datum/material/gold = SHEET_MATERIAL_AMOUNT, /datum/material/diamond = SHEET_MATERIAL_AMOUNT)
|
|
|
|
/datum/crafting_recipe/cross
|
|
name = "Ornate Cross"
|
|
result = /obj/item/crucifix
|
|
reqs = list(/obj/item/stack/sheet/mineral/gold = 1,
|
|
/obj/item/stack/sheet/mineral/diamond = 1)
|
|
tool_behaviors = list(TOOL_SCREWDRIVER)
|
|
time = 20
|
|
category = CAT_MISC
|