Skip to content

Commit

Permalink
Soteria Buff one out of one hundred.
Browse files Browse the repository at this point in the history
It's been a long time coming, This PR was meant to be done months ago. It reduces the research points needed by 37500 because it removes the research tree for the unmaker. The Greyson portable shield was moved to the glass widow branch. Unmakers can still be purchased from cargo, Found at the end of the gauntlet and now are a rare drop from the Greyson Titan robots that can be found at the end of the gauntlet or the boss rooms in the greyson's outpost.
  • Loading branch information
Legate-Maxson committed Oct 20, 2024
1 parent eaf9a28 commit 9d55964
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread
s.set_up(3, 1, src)
s.start()
if(prob(10))
new /obj/item/gun_upgrade/mechanism/greyson_master_catalyst(src.loc)
..()


Expand Down
8 changes: 4 additions & 4 deletions code/modules/research/designs/greyson.dm
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@
build_path = /obj/item/gun_upgrade/mechanism/glass_widow
category = CAT_GUNMODS

/datum/design/research/item/greyson/unmaker
name = "GP \"Master Unmaker\" infuser"
build_path = /obj/item/gun_upgrade/mechanism/greyson_master_catalyst
category = CAT_GUNMODS
//datum/design/research/item/greyson/unmaker
// name = "GP \"Master Unmaker\" infuser"
// build_path = /obj/item/gun_upgrade/mechanism/greyson_master_catalyst
// category = CAT_GUNMODS

/datum/design/research/item/powercell/large/grayson
name = "GP-SI \"Posi-cell 16000L\""
Expand Down
28 changes: 14 additions & 14 deletions code/modules/research/nodes/greyson.dm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

/datum/technology/GP_window
name = "Greyson Positronic Glass-Widow Infuser"
desc = "The GP Glass Widow Infuser design and manufacturing."
desc = "The GP Glass Widow Infuser design and portable self charging combat shields."
tech_type = RESEARCH_GREYSON

x = 0.3 //Bottom left
Expand All @@ -79,23 +79,23 @@
/datum/technology/exotic_gunmods)
required_tech_levels = list(RESEARCH_COMBAT = 10)
cost = 11250
unlocks_designs = list(/datum/design/research/item/greyson/glass_widow)
unlocks_designs = list(/datum/design/research/item/greyson/glass_widow,
/datum/design/research/item/greyson/combat_shield)

/datum/technology/GP_unmaker
name = "Greyson Positronic Tyrant Destroyers"
desc = "The rare and highly valueable GP Master Unmaker Infuser gun mod and portable self charging combat shields."
tech_type = RESEARCH_GREYSON
//datum/technology/GP_unmaker
// name = "Greyson Positronic Tyrant Destroyers"
// desc = "The rare and highly valueable GP Master Unmaker Infuser gun mod."
// tech_type = RESEARCH_GREYSON

x = 0.5 //Bottom middle
y = 0.3
icon = "mastermind"
// x = 0.5 //Bottom middle
// y = 0.3
// icon = "mastermind"

required_technologies = list(/datum/technology/GP_window)
required_tech_levels = list(RESEARCH_COMBAT = 13)
cost = 37500
// required_technologies = list(/datum/technology/GP_window)
// required_tech_levels = list(RESEARCH_COMBAT = 13)
// cost = 37500

unlocks_designs = list(/datum/design/research/item/greyson/unmaker,
/datum/design/research/item/greyson/combat_shield)
// unlocks_designs = list(/datum/design/research/item/greyson/unmaker)

/datum/technology/GP_cells
name = "Greyson Positronic Cells"
Expand Down

0 comments on commit 9d55964

Please sign in to comment.