Merge pull request #441 from Salmonfishyy/main
Update vi.json and add exclusive Vietnamese pixel font
This commit is contained in:
commit
af8d857b4e
Binary file not shown.
36
lang/vi.json
36
lang/vi.json
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"#lang.name": "Tiếng Việt",
|
"#lang.name": "Tiếng Việt",
|
||||||
"#lang.credit": "VoidInstructions, NguyenChiBao, SalmonFishy",
|
"#lang.credit": "VoidInstructions, NguyenChiBao, SalmonFishy",
|
||||||
"#lang.font": "Arial",
|
"#lang.font": "Vietnamese_Pixel",
|
||||||
"land": "Đất đai",
|
"land": "Đất đai",
|
||||||
"liquids": "Chất lỏng",
|
"liquids": "Chất lỏng",
|
||||||
"life": "Sự sống",
|
"life": "Sự sống",
|
||||||
|
|
@ -524,21 +524,21 @@
|
||||||
"molten_potassium_salt": "Muối kali nóng chảy",
|
"molten_potassium_salt": "Muối kali nóng chảy",
|
||||||
"molten_sodium_acetate": "Natri axetat nóng chảy",
|
"molten_sodium_acetate": "Natri axetat nóng chảy",
|
||||||
"frozen_nitro": "Nitro đóng băng",
|
"frozen_nitro": "Nitro đóng băng",
|
||||||
"cured_meat": "",
|
"cured_meat": "Thịt muối",
|
||||||
"nut_oil": "",
|
"nut_oil": "Dầu hạt",
|
||||||
"grease": "",
|
"grease": "Mỡ dầu",
|
||||||
"fat": "",
|
"fat": "Mỡ",
|
||||||
"potassium": "",
|
"potassium": "Kali",
|
||||||
"molten_potassium": "",
|
"molten_potassium": "Kali nóng chảy",
|
||||||
"magnesium": "",
|
"magnesium": "Ma-giê",
|
||||||
"molten_magnesium": "",
|
"molten_magnesium": "Ma-giê nóng chảy",
|
||||||
"sandstorm": "",
|
"sandstorm": "Bão cát",
|
||||||
"caustic_potash": "",
|
"caustic_potash": "Kali hiđroxit",
|
||||||
"antibomb": "",
|
"antibomb": "Phản bom",
|
||||||
"tornado": "",
|
"tornado": "Lốc xoáy",
|
||||||
"earthquake": "",
|
"earthquake": "Động đất",
|
||||||
"tsunami": "",
|
"tsunami": "Sóng thần",
|
||||||
"blaster": "",
|
"blaster": "Tia nổ",
|
||||||
"propane_ice": "",
|
"propane_ice": "Propan đóng băng",
|
||||||
"molten_caustic_potash": ""
|
"molten_caustic_potash": "Kali hiđroxit nóng chảy"
|
||||||
}
|
}
|
||||||
|
|
@ -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