Skip to content

Commit

Permalink
Merge pull request Civ13#2436 from savethetreez/branch
Browse files Browse the repository at this point in the history
Fixes some reagents as drinks and fixes icons for cans
  • Loading branch information
savethetreez authored Oct 24, 2023
2 parents ad37c2a + 2ab129d commit f767723
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/map_metadata/bank_robbery.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
caribbean_blocking_area_types = list(
/area/caribbean/no_mans_land/invisible_wall,
/area/caribbean/no_mans_land/invisible_wall/inside)
respawn_delay = 0
respawn_delay = 600 // 1 minute

faction_organization = list(
CIVILIAN,
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/map_metadata/drug_bust.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
caribbean_blocking_area_types = list(
/area/caribbean/no_mans_land/invisible_wall,
/area/caribbean/no_mans_land/invisible_wall/inside)
respawn_delay = 0
respawn_delay = 600

faction_organization = list(
CIVILIAN,
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/map_metadata/hill_3234.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
no_winner = "Hill 3234 is still under Soviet control."
lobby_icon = "icons/lobby/sovafghan.png"
caribbean_blocking_area_types = list(/area/caribbean/no_mans_land/invisible_wall, /area/caribbean/no_mans_land/invisible_wall/one, /area/caribbean/no_mans_land/invisible_wall/two)
respawn_delay = 0
respawn_delay = 600 // 1 minute
victory_time = 24000
no_hardcore = TRUE

Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/map_metadata/magistral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
no_winner = "The compound is still under the Mujahideen's control."
lobby_icon = "icons/lobby/magistral.png"
caribbean_blocking_area_types = list(/area/caribbean/no_mans_land/invisible_wall, /area/caribbean/no_mans_land/invisible_wall/one, /area/caribbean/no_mans_land/invisible_wall/two)
respawn_delay = 0
respawn_delay = 600 // 1 minute
victory_time = 21000
no_hardcore = TRUE

Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/map_metadata/stalingrad.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
lobby_icon = "icons/lobby/stalingrad.png"
no_winner ="The battle for the city is still going on."
caribbean_blocking_area_types = list(/area/caribbean/no_mans_land/invisible_wall/taiga,/area/caribbean/no_mans_land/invisible_wall/taiga/one,/area/caribbean/no_mans_land/invisible_wall/taiga/two)
respawn_delay = 0
respawn_delay = 600 // 1 minute

faction_organization = list(
GERMAN,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,14 @@
reagent_state = LIQUID
nutriment_factor = 0.9

/datum/reagent/nutriment/cola
/datum/reagent/drink/cola
name = "cola"
id = "cola"
description = "A sweet taste of sugar."
taste_description = "sweet"
taste_mult = 1.1
reagent_state = LIQUID
nutriment_factor = 3
nutrition = 1
color = "#120b02"

/datum/reagent/nutriment/ketchup
Expand All @@ -203,20 +203,22 @@
nutriment_factor = TRUE
color = "#FFFFFF"

/datum/reagent/nutriment/coconutmilk //Added new reagent for coconuts
/datum/reagent/drink/coconutmilk //Added new reagent for coconuts
name = "Coconut milk"
id = "coconutmilk"
description = "A white, milky liquid, loaded with sugary sweetness."
taste_description = "sweetness"
nutriment_factor = 25
nutrition = 25
reagent_state = LIQUID
color = "#FFFFFF"

/datum/reagent/nutriment/apricotjuice //Added new reagent for apricots
/datum/reagent/drink/apricotjuice //Added new reagent for apricots
name = "Apricot juice"
id = "apricotjuice"
description = "An orange, transparant liquid, tasting of apricots."
taste_description = "sweetness"
nutriment_factor = 25
nutrition = 25
reagent_state = LIQUID
color = "#FFFFFF"

/datum/reagent/nutriment/cherryjelly
Expand All @@ -226,7 +228,7 @@
taste_description = "cherry"
taste_mult = 1.3
reagent_state = LIQUID
nutriment_factor = TRUE
nutriment_factor = 1
color = "#801E28"

/datum/reagent/nutriment/cornoil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,8 @@
else
icon_state = "[base_icon]_empty"
return
/obj/item/weapon/reagent_containers/food/drinks/can/on_reagent_change()
update_icon()

/obj/item/weapon/reagent_containers/food/drinks/can/monster
icon_state = "monster"
Expand Down
Binary file modified icons/obj/chemical.dmi
Binary file not shown.

0 comments on commit f767723

Please sign in to comment.