Skip to content

Commit

Permalink
Merge branch 'master' into miasma
Browse files Browse the repository at this point in the history
  • Loading branch information
Joker66613 authored Feb 29, 2024
2 parents 6703e0a + 4f1e620 commit 9649579
Show file tree
Hide file tree
Showing 13 changed files with 88 additions and 6 deletions.
50 changes: 50 additions & 0 deletions aquila/code/game/objects/effects/contraband.dm
Original file line number Diff line number Diff line change
Expand Up @@ -421,3 +421,53 @@
name = "PRACA PRACA"
desc = "Coś trzeba zrobić?"
icon_state = "poster48_legit"

/obj/structure/sign/poster/official/nfz_sor
name = "SOR"
desc = "Plakat oznaczający Szpitalny Oddział Ratunkowy"
icon_state = "poster49_legit"

/obj/structure/sign/poster/official/nfz_pij_mleko
name = "NFZ - Pij mleko!"
desc = "Plakat promujący szeroko zakrojoną akcję <Pij Mleko!>"
icon_state = "poster50_legit"

/obj/structure/sign/poster/official/nfz_koronawirus
name = "NFZ - UWAGA, KORONAWIRUS!"
desc = "Plakat ostrzegający przed koronawirusem łudząco przypominającym wschodzące słońce."
icon_state = "poster51_legit"

/obj/structure/sign/poster/official/nfz_krwiodawstwo
name = "Punkt Krwiodawstwa"
desc = "Plakat oznaczający Punkt Krwiodawstwa"
icon_state = "poster52_legit"

/obj/structure/sign/poster/official/nfz_myj_rece
name = "MYJ RĘCE!"
desc = "Plakat przypominający o konieczności mycia rąk, brudasie."
icon_state = "poster53_legit"

/obj/structure/sign/poster/official/nfz_infolinia
name = "Infolinia NFZ"
desc = "Plakat reklamujący Infolinię NFZ - dziwnym trafem nie zawiera numeru telefonu."
icon_state = "poster54_legit"

/obj/structure/sign/poster/official/nfz_rak_piersi
name = "Uważaj na raka piersi!"
desc = "Plakat NFZ z symbolem różowej wstążki - międzynarodowym symbolem oznaczającym walkę z rakiem piersi."
icon_state = "poster55_legit"

/obj/structure/sign/poster/official/nfz_poz
name = "POZ+"
desc = "Plakat reklamujący pionierski system opieki zdrowotnej organizacji opieki koordynowanej."
icon_state = "poster56_legit"

/obj/structure/sign/poster/official/nfz_leki75
name = "Darmowe leki 75+"
desc = "Plakat informujący pacjentów o darmowych lekach dla osób w wieku powyżej 75 lat."
icon_state = "poster57_legit"

/obj/structure/sign/poster/official/nfz_ewus
name = "eWUŚ"
desc = "Plakat informujący o wdrożeniu systemu eWUŚ - Elektronicznej Weryfikacja Uprawnień Świadczeniobiorców. Chyba jesteś ubezpieczony, prawda?"
icon_state = "poster58_legit"
25 changes: 25 additions & 0 deletions aquila/code/modules/food_and_drinks/drinks/drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,30 @@
desc = "Najlepsze w całym kosmosie."
icon = 'aquila/icons/obj/drinks.dmi'
icon_state = "mocnyfull"
lefthand_file = 'icons/mob/inhands/equipment/kitchen_lefthand.dmi'
righthand_file = 'icons/mob/inhands/equipment/kitchen_righthand.dmi'
list_reagents = list(/datum/reagent/consumable/ethanol/beer = 30)
foodtype = GRAIN | ALCOHOL

/obj/item/reagent_containers/food/drinks/bottle/tymbark
name = "Tymbark jabłko - mięta"
desc = "Smak wakacji."
custom_price = 10
icon = 'aquila/icons/obj/drinks.dmi'
icon_state = "tymkapsel"
lefthand_file = 'icons/mob/inhands/equipment/kitchen_lefthand.dmi'
righthand_file = 'icons/mob/inhands/equipment/kitchen_righthand.dmi'
isGlass = TRUE
list_reagents = list(/datum/reagent/consumable/applejuice = 50)
foodtype = FRUIT | SUGAR

/obj/item/reagent_containers/food/drinks/soda_cans/helenka
name = "Helena jabłko - truskawka"
desc = "Smak działki."
custom_price = 20
icon = 'aquila/icons/obj/drinks.dmi'
icon_state = "helenka"
lefthand_file = 'icons/mob/inhands/equipment/kitchen_lefthand.dmi'
righthand_file = 'icons/mob/inhands/equipment/kitchen_righthand.dmi'
list_reagents = list(/datum/reagent/consumable/applejuice = 100)
foodtype = FRUIT | SUGAR
4 changes: 3 additions & 1 deletion aquila/code/modules/vending/boozeomat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
/obj/item/reagent_containers/food/drinks/bottle/menthol = 4,
/obj/item/reagent_containers/food/drinks/ale = 6,
/obj/item/reagent_containers/food/drinks/beer = 6,
/obj/item/reagent_containers/food/drinks/bottle/amarena = 5,
/obj/item/reagent_containers/food/drinks/bottle/gin = 5,
/obj/item/reagent_containers/food/drinks/bottle/whiskey = 5,
/obj/item/reagent_containers/food/drinks/bottle/tequila = 5,
Expand All @@ -32,4 +33,5 @@
/obj/item/reagent_containers/food/drinks/bottle/blank/small = 15,
/obj/item/reagent_containers/food/drinks/bottle/blank/small = 15,
/obj/item/reagent_containers/food/drinks/soda_cans/mocnyfull = 6,
)
/obj/item/reagent_containers/food/drinks/bottle/tymbark = 6,
/obj/item/reagent_containers/food/drinks/soda_cans/helenka = 6)
Binary file modified aquila/icons/obj/contraband.dmi
Binary file not shown.
Binary file modified aquila/icons/obj/drinks.dmi
Binary file not shown.
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry/machinery/pandemic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@

icon_state = "pand[(beaker) ? "1" : "0"][powered() ? "" : "_nopower"]"
if(wait)
add_overlay("waitlight")
add_overlay("waitlight_pand")
else
cut_overlays()

Expand Down
3 changes: 3 additions & 0 deletions code/modules/reagents/chemistry/reagents/drink_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@
color = "#ECFF56" // rgb: 236, 255, 86
chem_flags = NONE
taste_description = "apples"
glass_icon_state = "glass_orange"
glass_name = "glass of apple juice"
glass_desc = "Apple juice. Or maybe it's cider. Who cares?"
hydration_factor = 12 * REAGENTS_METABOLISM

/datum/reagent/consumable/poisonberryjuice
Expand Down
6 changes: 3 additions & 3 deletions code/modules/reagents/reagent_containers/pill.dm
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,13 @@

/obj/item/reagent_containers/pill/floorpill
name = "floorpill"
desc = "A strange pill found in the depths of maintenance. Somehow, it can't be dissolved or used in a grinder."
desc = "A strange pill found in the depths of maintenance."// Somehow, it can't be dissolved or used in a grinder."
icon_state = "pill21"
var/static/list/names = list("maintenance pill","floorpill","mystery pill","suspicious pill","strange pill")
var/static/list/descs = list("Your feeling is telling you no, but...","Drugs are expensive, you can't afford not to eat any pills that you find."\
, "Surely, there's no way this could go bad.")
prevent_grinding = TRUE
dissolvable = FALSE
//prevent_grinding = TRUE // AQ EDIT - floor pills now grindable
//dissolvable = FALSE // AQ EDIT - and dissolvable!

/obj/item/reagent_containers/pill/floorpill/Initialize(mapload)
list_reagents = list(get_random_reagent_id(CHEMICAL_RNG_FUN) = rand(10,50))
Expand Down
4 changes: 3 additions & 1 deletion code/modules/vending/cola.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
/obj/item/reagent_containers/food/drinks/soda_cans/space_up = 10,
/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game = 10,
/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime = 10,
/obj/item/reagent_containers/glass/waterbottle = 10)
/obj/item/reagent_containers/glass/waterbottle = 10,
/obj/item/reagent_containers/food/drinks/soda_cans/helenka = 10,
/obj/item/reagent_containers/food/drinks/bottle/tymbark = 10,)
contraband = list(/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko = 6,
/obj/item/reagent_containers/food/drinks/soda_cans/shamblers = 6)
premium = list(/obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola = 1,
Expand Down
Binary file modified icons/mob/mask.dmi
Binary file not shown.
Binary file modified icons/obj/chemical.dmi
Binary file not shown.
Binary file modified icons/obj/drinks.dmi
Binary file not shown.
Binary file modified nsv13/icons/obj/card.dmi
Binary file not shown.

0 comments on commit 9649579

Please sign in to comment.