Merge pull request #441 from Salmonfishyy/main

Update vi.json and add exclusive Vietnamese pixel font
This commit is contained in:
slweeb 2024-03-23 12:05:06 -04:00 committed by GitHub
commit af8d857b4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 274 additions and 19 deletions

BIN
fonts/Vietnamese_Pixel.ttf Normal file

Binary file not shown.

View File

@ -1,7 +1,7 @@
{
"#lang.name": "Tiếng Việt",
"#lang.credit": "VoidInstructions, NguyenChiBao, SalmonFishy",
"#lang.font": "Arial",
"#lang.font": "Vietnamese_Pixel",
"land": "Đất đai",
"liquids": "Chất lỏng",
"life": "Sự sống",
@ -524,21 +524,21 @@
"molten_potassium_salt": "Muối kali nóng chảy",
"molten_sodium_acetate": "Natri axetat nóng chảy",
"frozen_nitro": "Nitro đóng băng",
"cured_meat": "",
"nut_oil": "",
"grease": "",
"fat": "",
"potassium": "",
"molten_potassium": "",
"magnesium": "",
"molten_magnesium": "",
"sandstorm": "",
"caustic_potash": "",
"antibomb": "",
"tornado": "",
"earthquake": "",
"tsunami": "",
"blaster": "",
"propane_ice": "",
"molten_caustic_potash": ""
}
"cured_meat": "Thịt muối",
"nut_oil": "Dầu hạt",
"grease": "Mỡ dầu",
"fat": "Mỡ",
"potassium": "Kali",
"molten_potassium": "Kali nóng chảy",
"magnesium": "Ma-giê",
"molten_magnesium": "Ma-giê nóng chảy",
"sandstorm": "Bão cát",
"caustic_potash": "Kali hiđroxit",
"antibomb": "Phản bom",
"tornado": "Lốc xoáy",
"earthquake": "Động đất",
"tsunami": "Sóng thần",
"blaster": "Tia nổ",
"propane_ice": "Propan đóng băng",
"molten_caustic_potash": "Kali hiđroxit nóng chảy"
}

255
mods/Vegan.js Normal file
View File

@ -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: {},
};