diff --git a/modular_chomp/code/game/objects/items/weapons/storage/firstaid.dm b/modular_chomp/code/game/objects/items/weapons/storage/firstaid.dm index df9c17d0d8..c0097cdc2c 100644 --- a/modular_chomp/code/game/objects/items/weapons/storage/firstaid.dm +++ b/modular_chomp/code/game/objects/items/weapons/storage/firstaid.dm @@ -10,7 +10,8 @@ /obj/item/weapon/storage/pill_bottle/juggernog, /obj/item/weapon/storage/pill_bottle/curea, /obj/item/weapon/storage/pill_bottle/souldew, - /obj/item/weapon/storage/pill_bottle/puriyfingagent) + /obj/item/weapon/storage/pill_bottle/purifyingagent) + /obj/item/weapon/storage/pill_bottle/neotane name = "pill bottle (neo kelotane)" @@ -48,16 +49,20 @@ starts_with = list(/obj/item/weapon/reagent_containers/pill/souldew = 7) wrapper_color = COLOR_GREEN -/obj/item/weapon/storage/pill_bottle/puriyfingagent - name = "pill bottle (puriyfing agent)" +/obj/item/weapon/storage/pill_bottle/purifyingagent + + name = "pill bottle (purifying agent)" + desc = "Contains experimental pills." - starts_with = list(/obj/item/weapon/reagent_containers/pill/puriyfingagent = 7) + starts_with = list(/obj/item/weapon/reagent_containers/pill/purifyingagent = 7) + wrapper_color = COLOR_GREEN //Pills /obj/item/weapon/reagent_containers/pill/neotane name = "Neo Kelotane (15u)" - desc = "An expirmental pill." + desc = "An experimental pill." + icon_state = "pill2" /obj/item/weapon/reagent_containers/pill/neotane/Initialize() @@ -115,12 +120,15 @@ reagents.add_reagent("souldew", 10) color = reagents.get_color() -/obj/item/weapon/reagent_containers/pill/puriyfingagent - name = "Puriyfing Agent (10u)" +/obj/item/weapon/reagent_containers/pill/purifyingagent + name = "Purifying Agent (10u)" + desc = "An expirmental pill." icon_state = "pill2" -/obj/item/weapon/reagent_containers/pill/puriyfingagent/Initialize() +/obj/item/weapon/reagent_containers/pill/purifyingagent/Initialize() + . = ..() - reagents.add_reagent("puriyfingagent", 10) + reagents.add_reagent("purifyingagent", 10) + color = reagents.get_color() \ No newline at end of file diff --git a/modular_chomp/code/modules/reagents/reactions/instant/instant.dm b/modular_chomp/code/modules/reagents/reactions/instant/instant.dm index a7ddd6c129..ff3163acb2 100644 --- a/modular_chomp/code/modules/reagents/reactions/instant/instant.dm +++ b/modular_chomp/code/modules/reagents/reactions/instant/instant.dm @@ -67,10 +67,10 @@ required_reagents = list("neoliquidfire" = 1, "glucose" = 1, "hydrogen" = 1) result_amount = 2 -/decl/chemical_reaction/instant/puriyfingagent - name = "Puriyfing Agent" - id = "puriyfingagent" - result = "puryfingagent" +/decl/chemical_reaction/instant/purifyingagent + name = "Purifying Agent" + id = "purifyingagent" + result = "purifyingagent" required_reagents = list("deathblood" = 1, "carthatoline" = 1, "hyronalin" = 1) result_amount = 2 @@ -119,9 +119,9 @@ required_reagents = list("bicard" = 1, "kelotane" = 1, "liquidlife" = 1, "carpotoxin" = 1, "quadcord" = 1, "cryptobiolin" = 1) result_amount = 6 -/decl/chemical_reaction/instant/phoneixbreath - name = "phoneixbreath" - id = "phoneixbreath" - result = "phoneixbreath" +/decl/chemical_reaction/instant/phoenixbreath + name = "phoenixbreath" + id = "phoenixbreath" + result = "phoenixbreath" required_reagents = list("vermicetol" = 1, "liquidlife" = 1, "neoliquidfire" = 1, "souldew" = 1, "phoron" = 1, "dermaline" = 1) result_amount = 6 \ No newline at end of file diff --git a/modular_chomp/code/modules/reagents/reagents/medicine.dm b/modular_chomp/code/modules/reagents/reagents/medicine.dm index 2834327760..2ec8df9dec 100644 --- a/modular_chomp/code/modules/reagents/reagents/medicine.dm +++ b/modular_chomp/code/modules/reagents/reagents/medicine.dm @@ -87,7 +87,7 @@ /datum/reagent/purifyingagent name = "Purifying Agent" - id = "puriyfingagent" + id = "purifyingagent" description = "An agent that purges one's body of rads and toxins." reagent_state = LIQUID color = "#225722" @@ -175,7 +175,7 @@ /datum/reagent/neotane name = "Neo Kelotane" id = "neotane" - description = "An advancment of kelotane that scars and breaks apart the users flesh to remove the burnt tissue." + description = "An advancement of kelotane that scars and breaks apart the user's flesh to remove the burnt tissue." taste_description = "bitterness" reagent_state = LIQUID color = "#FF6600" @@ -308,7 +308,7 @@ /datum/reagent/curea name = "curea" id = "curea" - description = "An experimental that removes many aligments, such as poison and stiffing of muscles via frost" + description = "An experimental that removes many ailments, such as poison and stiffening of muscles via frost" taste_description = "bitterness" reagent_state = LIQUID color = "#660066"