mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
The Supermatter Resizing: How a crystal can fit into hand (#87232)
## About The Pull Request adds supermatter sword craft made out of: 20 adamantium 2 vortex cores actual sm 6 minutes of crafting announcement on fourth minute shrinking wand first of all, you need to craft adamantium pedestal (2 min)  then, you should combine it with shrink wand and sm (2 min) (announcement once you craft it) (it has a gps signal)  and the last one, small sm and 2 vortex cores (2 min) (dont forget about gps signal)   ## Why It's Good For The Game wiz needs more challenges and fun craft is very hard and challenging, but the reward is powerfull as fuck ## Changelog 🆑 MelokGleb and KREKS add: very hard wiz-only sm sword craft sprite: sm sword resprite /🆑
This commit is contained in:
@@ -201,3 +201,15 @@
|
||||
)
|
||||
time = 8 SECONDS
|
||||
category = CAT_WEAPON_MELEE
|
||||
|
||||
/datum/crafting_recipe/sm_sword
|
||||
name = "Supermatter Sword"
|
||||
result = /obj/item/melee/supermatter_sword
|
||||
reqs = list(
|
||||
/obj/item/assembly/signaler/anomaly/vortex = (MAX_CORES_VORTEX - 1),
|
||||
)
|
||||
machinery = list(
|
||||
/obj/machinery/power/supermatter_crystal/small = CRAFTING_MACHINERY_CONSUME,
|
||||
)
|
||||
time = 120 SECONDS
|
||||
category = CAT_WEAPON_MELEE
|
||||
|
||||
@@ -85,3 +85,26 @@
|
||||
)
|
||||
category = CAT_STRUCTURE
|
||||
crafting_flags = CRAFT_CHECK_DENSITY
|
||||
|
||||
/datum/crafting_recipe/adam_pedestal
|
||||
name = "Adamantine Pedestal"
|
||||
result = /obj/item/adamantine_pedestal
|
||||
reqs = list(
|
||||
/obj/item/stack/sheet/mineral/adamantine = 20,
|
||||
)
|
||||
time = 120 SECONDS
|
||||
category = CAT_STRUCTURE
|
||||
|
||||
|
||||
/datum/crafting_recipe/sm_small
|
||||
name = "Small Supermatter Crystal"
|
||||
result = /obj/machinery/power/supermatter_crystal/small
|
||||
reqs = list(
|
||||
/obj/item/gun/magic/wand/shrink = 1,
|
||||
/obj/item/adamantine_pedestal = 1,
|
||||
)
|
||||
machinery = list(
|
||||
/obj/machinery/power/supermatter_crystal = CRAFTING_MACHINERY_CONSUME,
|
||||
)
|
||||
time = 120 SECONDS
|
||||
category = CAT_STRUCTURE
|
||||
|
||||
@@ -60,3 +60,27 @@
|
||||
icon_state = "light"
|
||||
pixel_x = -176
|
||||
pixel_y = -176
|
||||
|
||||
/// Normal sm but small (sm sword recipe element) (wiz only) and adamantine pedestal for it
|
||||
/obj/machinery/power/supermatter_crystal/small
|
||||
name = "strangely small supermatter crystal"
|
||||
desc = "A strangely translucent and iridescent crystal on an adamantine pedestal. It looks like it should be a bit bigger..."
|
||||
base_icon_state = "sm_small"
|
||||
icon_state = "sm_small"
|
||||
moveable = TRUE
|
||||
anchored = FALSE
|
||||
|
||||
/obj/machinery/power/supermatter_crystal/small/Initialize(mapload)
|
||||
. = ..()
|
||||
AddComponent(/datum/component/gps, "Adamantium Signal")
|
||||
priority_announce("Anomalous crystal detected onboard. Location is marked on every GPS device.", "Nanotrasen Anomaly Department Announcement")
|
||||
|
||||
/obj/item/adamantine_pedestal
|
||||
name = "adamantine pedestal"
|
||||
desc = "An adamantine pedestal. It looks like it should have something small but massive on top."
|
||||
icon = 'icons/obj/machines/engine/supermatter.dmi'
|
||||
icon_state = "pedestal"
|
||||
w_class = WEIGHT_CLASS_HUGE
|
||||
throw_speed = 1
|
||||
throw_range = 1
|
||||
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 30 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Reference in New Issue
Block a user