Skip to content

Commit

Permalink
Merge pull request #5774 from Legate-Maxson/master
Browse files Browse the repository at this point in the history
Soteria Buff one out of one hundred.
  • Loading branch information
Trilbyspaceclone authored Oct 20, 2024
2 parents eaf9a28 + 9d55964 commit bdf3a14
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 bdf3a14

Please sign in to comment.