From dc180f625a5000a88131ac1dbd055077cb97a149 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 4 Mar 2023 13:24:46 -0500 Subject: Add some flowers. --- js/garden.js | 122 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) diff --git a/js/garden.js b/js/garden.js index 13ccd3f..406d6e3 100644 --- a/js/garden.js +++ b/js/garden.js @@ -515,6 +515,128 @@ const CROPS = [ species: ["brassica rapa"], springPlant: -3, transplant: true + }), + new Crop("Alyssum", { + family: "Brassica", + headStart: 4, + maturity: 8, + species: ["lobularia maritima"], + springPlant: 0, + transplant: true + }), + new Crop("Amaranth (Flower)", { + family: "Amaranth", + headStart: 4, + maturity: 12, + species: ["amaranthus caudatus"], + springPlant: 0, + transplant: true + }), + new Crop("Borage", { + family: "Borage", + maturity: 7, + species: ["borago officinalis"], + springPlant: 0 + }), + new Crop("Calendula", { + family: "Aster", + headStart: 6, + maturity: 11, + species: ["calendula officinalis"], + springPlant: 0, + transplant: true + }), + new Crop("Cornflower", { + family: "Aster", + headStart: 4, + maturity: 12, + spacing: 4, + species: ["centaurea cyanus"], + springPlant: 0, + transplant: true + }), + new Crop("Cosmos", { + family: "Aster", + headStart: 4, + maturity: 12, + species: ["cosmos bipinnatus"], + springPlant: 0, + transplant: true + }), + new Crop("Larkspur", { + family: "Buttercup", + headStart: 4, + maturity: 11, + spacing: 3, + species: ["consolida ajacis"], + springPlant: 0, + transplant: true + }), + new Crop("Marigold", { + family: "Aster", + headStart: 4, + maturity: 11, + species: ["Tagetes erecta", "tagetes patula"], + springPlant: 0, + transplant: true + }), + new Crop("Mexican Sunflower", { + family: "Aster", + headStart: 6, + maturity: 12, + species: ["tithonia rotundifolia"], + springPlant: 0, + transplant: true + }), + new Crop("Nasturtium", { + depth: 0.5, + family: "Tropaeolum", + headStart: 3, + maturity: 8, + species: ["tropaeolum majus"], + springPlant: 0, + transplant: true + }), + new Crop("Nigella", { + family: "Buttercup", + headStart: 4, + maturity: 10, + species: ["nigella hispanica"], + springPlant: 0, + transplant: true + }), + new Crop("Strawflower", { + family: "Aster", + headStart: 8, + maturity: 10, + species: ["xerochrysum bracteatum"], + springPlant: 0, + transplant: true + }), + new Crop("Sunflower", { + family: "Helianthus", + headStart: 2, + maturity: 11, + species: ["helianthus annuus"], + springPlant: 0, + transplant: true + }), + new Crop("Sweet Pea", { + depth: 0.5, + family: "Legume", + headStart: 8, + maturity: 10, + species: ["lathyrus odoratus"], + springPlant: 0, + transplant: true + }), + new Crop("Zinnia", { + family: "Aster", + headStart: 4, + maturity: 7, + species: ["zinnia elegans"], + springPlant: 0, + transplant: true }) ]; -- cgit v1.2.3