Add all Vegetable, nut and fruits
current just have all berries
This commit is contained in:
parent
470b0c9de3
commit
57760b351f
|
|
@ -0,0 +1,255 @@
|
|||
/*
|
||||
|
||||
Vegan.js Adds all vegetables, fruits and nut to Sandboxels!
|
||||
Create by Salmonfishyy
|
||||
|
||||
|
||||
Changelog - Berries Update - v1
|
||||
- v1 feature :
|
||||
- Added Blueberries
|
||||
- Added Raspberries
|
||||
- Added Blackberries
|
||||
- Added Cranberries
|
||||
- Added Boysenberries
|
||||
- Added Elderberries
|
||||
- Added Boysenberries
|
||||
- Added Elderberries
|
||||
- Added Goji berries
|
||||
- Added Black mulberries
|
||||
- Added Black currants
|
||||
- Added Acai berries
|
||||
- Added Salmon berries
|
||||
- Added Juneberries
|
||||
- Added Cloudberries
|
||||
- Added Red Mulberries
|
||||
- Added Strawberries
|
||||
- Added Serviceberries
|
||||
- Added Huckleberries
|
||||
|
||||
*/
|
||||
|
||||
elements.blueberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#464196","#2E2B64"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#1F1C42",
|
||||
reactions: {},
|
||||
};
|
||||
elements.raspberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF0000","#FFCCCC"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF0000",
|
||||
reactions: {},
|
||||
};
|
||||
elements.blackberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#000000","#660066"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#660066",
|
||||
reactions: {},
|
||||
};
|
||||
elements.cranberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF0000","#FF6600"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF0000",
|
||||
reactions: {},
|
||||
};
|
||||
elements.boysenberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#660066","#CC99FF"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#CC99FF",
|
||||
reactions: {},
|
||||
};
|
||||
elements.elderberries = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#660066","#990099"]
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#990099",
|
||||
reactions: {},
|
||||
};
|
||||
elements.goji_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF6600","#FFCC99"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF6600",
|
||||
reactions: {},
|
||||
};
|
||||
elements.black_mulberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#000000","#660066"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#660066",
|
||||
reactions: {},
|
||||
};
|
||||
elements."black_currants", = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#000000","#660066"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#660066",
|
||||
reactions: {},
|
||||
};
|
||||
elements.acai_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#660066","#990099"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#990099",
|
||||
reactions: {},
|
||||
};
|
||||
elements.salmon_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF6600","#FFCC99"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF6600",
|
||||
reactions: {},
|
||||
};
|
||||
elements.june_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#0000FF","#CCCCFF"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#0000FF",
|
||||
reactions: {},
|
||||
};
|
||||
elements.cloud_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF6600","#FFCC99"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF6600",
|
||||
reactions: {},
|
||||
};
|
||||
elements.red_mulberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF0000","#FF9999"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF0000",
|
||||
reactions: {},
|
||||
};
|
||||
elements.huckle_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF0000","#FFCCCC"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FF0000",
|
||||
reactions: {},
|
||||
};
|
||||
elements.service_berry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FFFFFF","#EEEEEE"]
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#FFFFFF",
|
||||
reactions: {},
|
||||
};
|
||||
elements.strawberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#FF0000","#FF9999"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#f5589c",
|
||||
reactions: {},
|
||||
};
|
||||
elements.marionberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#3E385A","#2C0589"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#1E034A",
|
||||
reactions: {},
|
||||
};
|
||||
elements.crowberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#003447","#000000"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#000000",
|
||||
reactions: {},
|
||||
};
|
||||
elements.dewberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#502554","#3E385A"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#381E4A",
|
||||
reactions: {},
|
||||
};
|
||||
elements.fox_grape = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#C0C0C0","#6F2DA8"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#38194A",
|
||||
reactions: {},
|
||||
};
|
||||
elements.green_grape = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#DBE465","#9CE465"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#A8E4A0",
|
||||
reactions: {},
|
||||
};
|
||||
elements.purple_grape = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#502554","#3E385A"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#5D345C",
|
||||
reactions: {},
|
||||
};
|
||||
elements.witch_finger_grape = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#8B0000","#000000"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#6E65E4",
|
||||
reactions: {},
|
||||
};
|
||||
elements.chokeberry = {
|
||||
behavior: behaviors.POWDER,
|
||||
category: "food",
|
||||
state: "solid",
|
||||
color: ["#8B0000","#000000"],
|
||||
breakInto: "juice",
|
||||
breakIntoColor: "#000000",
|
||||
reactions: {},
|
||||
};
|
||||
Loading…
Reference in New Issue