-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial meloning * growth sprites * harvest sprite * mutation datum and seed sprite * some minor fixes * sliceable honeydews
- Loading branch information
Showing
9 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/obj/item/food/honeydewslice | ||
name = "honeydew melon slice" | ||
desc = "a sweet slice of honeydew" | ||
icon = 'monkestation/icons/obj/food/misc.dmi' | ||
icon_state = "honeydewslice" | ||
food_reagents = list( | ||
/datum/reagent/consumable/nutriment/vitamin = 0.25, | ||
/datum/reagent/consumable/nutriment = 0.75 | ||
) | ||
tastes = list("watery honey" = 1) | ||
foodtypes = FRUIT | ||
food_flags = FOOD_FINGER_FOOD | ||
w_class = WEIGHT_CLASS_SMALL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/obj/item/seeds/watermelon/honeydew | ||
name = "pack of honeydew melon seeds" | ||
desc = "These seeds grow into sweet honeydew melon plants." | ||
icon = 'monkestation/icons/obj/hydroponics/fruit.dmi' | ||
icon_state = "honeydew-seed" | ||
icon_dead = "honeydew-dead" | ||
species = "honeydew" | ||
plantname = "Honeydew Melon Vines" | ||
product = /obj/item/food/grown/honeydew | ||
lifespan = 60 | ||
endurance = 40 | ||
growing_icon = 'monkestation/icons/obj/hydroponics/growing.dmi' | ||
genes = list(/datum/plant_gene/trait/repeated_harvest) | ||
reagents_add = list(/datum/reagent/consumable/nutriment/vitamin = 0.1, /datum/reagent/consumable/nutriment = 0.15) | ||
rarity = 20 | ||
graft_gene = /datum/plant_gene/trait/repeated_harvest | ||
|
||
/obj/item/food/grown/honeydew | ||
seed = /obj/item/seeds/watermelon/honeydew | ||
name = "honeydew melon" | ||
desc = "A sweet melon variant that, bizarrely, distills into honey." | ||
icon = 'monkestation/icons/obj/hydroponics/harvest.dmi' | ||
icon_state = "honeydew" | ||
foodtypes = FRUIT | ||
distill_reagent = /datum/reagent/consumable/honey | ||
|
||
/obj/item/food/grown/honeydew/make_processable() | ||
AddElement(/datum/element/processable, TOOL_KNIFE, /obj/item/food/honeydewslice, 6, 20, screentip_verb = "Slice") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters