mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-27 00:03:49 +01:00
ebbbf62cec
* Adds chicken meat, burger, onigiri, updates boiled rice sprite * Update code/modules/food_and_drinks/food/foods/side_dishes.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/game/objects/items/stacks/seaweed.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * changed chickenburger pathname, deleted old boiled rice sprite * Transfers reagents from rice to onigiri * Update code/modules/research/designs/biogenerator_designs.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * All sushi now requires seaweed * new seaweed desc, attackverb oopsy daisy, seaweed attack_self doesn't show pointless list, Onigiri goes in hand * moved seaweed sprite to organic.dmi * Update code/modules/research/designs/biogenerator_designs.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update organic.dmi * re * goal * oops * early return * Update code/modules/food_and_drinks/food/foods/side_dishes.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/modules/food_and_drinks/food/foods/side_dishes.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/food_and_drinks/food/foods/side_dishes.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/modules/food_and_drinks/food/foods/side_dishes.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
20 lines
491 B
Plaintext
20 lines
491 B
Plaintext
/obj/item/stack/seaweed
|
|
name = "seaweed sheet"
|
|
desc = "Weed.. from the Sea!"
|
|
singular_name = "seaweed sheet"
|
|
icon = 'icons/obj/stacks/organic.dmi'
|
|
icon_state = "seaweed"
|
|
item_state = "seaweed"
|
|
w_class = WEIGHT_CLASS_TINY
|
|
attack_verb = list("slapped")
|
|
hitsound = 'sound/weapons/grenadelaunch.ogg'
|
|
usesound = 'sound/items/deconstruct.ogg'
|
|
merge_type = /obj/item/stack/seaweed
|
|
|
|
/obj/item/stack/seaweed/attack_self(mob/user)
|
|
return
|
|
|
|
/obj/item/stack/seaweed/attack_self_tk()
|
|
return
|
|
|