mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-30 07:27:57 +01:00
HONK-A-TONK Update:
- Food items don't make you goddamn fat so easily. - Bananas are now edible but still leave a banana peel. - New Disease: Pierrot's Throat. While infected, random words you say are replaced with "honk." At the later stages, you'll randomly say honk as well. See your local doctor with a health analyzer to find the cure. Virus added to virus crate and random/badmin disease event. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@753 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -228,7 +228,7 @@
|
||||
world << sound('outbreak7.ogg')
|
||||
var/virus_type
|
||||
if(!virus)
|
||||
virus_type = pick(/datum/disease/dnaspread,/datum/disease/flu,/datum/disease/cold,/datum/disease/brainrot,/datum/disease/magnitis)
|
||||
virus_type = pick(/datum/disease/dnaspread,/datum/disease/flu,/datum/disease/cold,/datum/disease/brainrot,/datum/disease/magnitis,/datum/disease/pierrot_throat)
|
||||
else
|
||||
switch(virus)
|
||||
if("fake gbs")
|
||||
@@ -245,6 +245,8 @@
|
||||
virus_type = /datum/disease/dnaspread
|
||||
if("flu")
|
||||
virus_type = /datum/disease/flu
|
||||
if("pierrot's throat")
|
||||
virus_type = /datum/disease/pierrot_throat
|
||||
for(var/mob/living/carbon/human/H in world)
|
||||
if((H.virus) || (H.stat == 2))
|
||||
continue
|
||||
|
||||
@@ -304,7 +304,7 @@
|
||||
src.equip_if_possible(new /obj/item/clothing/under/clown(src), slot_w_uniform)
|
||||
src.equip_if_possible(new /obj/item/clothing/shoes/clown_shoes(src), slot_shoes)
|
||||
src.equip_if_possible(new /obj/item/clothing/mask/gas/clown_hat(src), slot_wear_mask)
|
||||
src.equip_if_possible(new /obj/item/weapon/banana(src), slot_in_backpack)
|
||||
src.equip_if_possible(new /obj/item/weapon/reagent_containers/food/snacks/banana(src), slot_in_backpack)
|
||||
src.equip_if_possible(new /obj/item/weapon/bikehorn(src), slot_in_backpack)
|
||||
src.equip_if_possible(new /obj/item/weapon/stamp/clown(src), slot_in_backpack)
|
||||
src.mutations |= 16
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
|
||||
/datum/recipe/pie
|
||||
flour_amount = 2
|
||||
extra_item = /obj/item/weapon/banana
|
||||
extra_item = /obj/item/weapon/reagent_containers/food/snacks/banana
|
||||
creates = "/obj/item/weapon/reagent_containers/food/snacks/pie"
|
||||
|
||||
/datum/recipe/donkpocket
|
||||
|
||||
@@ -1,23 +1,11 @@
|
||||
/*
|
||||
CONTAINS:
|
||||
BANANANANANA
|
||||
NO MORE BANANA, NOW YOU CAN EAT IT. GO SEE OTHER FOOD STUFFS.
|
||||
BANANA PEEL
|
||||
BIKE HORN
|
||||
|
||||
*/
|
||||
|
||||
/obj/item/weapon/banana/attack_self(mob/M as mob)
|
||||
var/obj/item/weapon/bananapeel/W = new /obj/item/weapon/bananapeel( M )
|
||||
M << "\blue You peel the banana."
|
||||
if (M.hand)
|
||||
M.l_hand = W
|
||||
else
|
||||
M.r_hand = W
|
||||
W.layer = 20
|
||||
W.add_fingerprint(M)
|
||||
del(src)
|
||||
return
|
||||
|
||||
/obj/item/weapon/bananapeel/HasEntered(AM as mob|obj)
|
||||
if (istype(AM, /mob/living/carbon))
|
||||
var/mob/M = AM
|
||||
|
||||
Reference in New Issue
Block a user