From b34d59ec8eee27d501c7daea15ec4fdbf83f24de Mon Sep 17 00:00:00 2001 From: GWhoGS <163777207+GWhoGS@users.noreply.github.com> Date: Sun, 17 Mar 2024 18:26:48 -0400 Subject: [PATCH 01/14] Add files via upload --- cool_explosives.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cool_explosives.js diff --git a/cool_explosives.js b/cool_explosives.js new file mode 100644 index 00000000..128e5d6d --- /dev/null +++ b/cool_explosives.js @@ -0,0 +1,13 @@ +elements.super_bomb = { // create the bomb + color: "#524c41", //color + behavior: [ + "XX|EX:250|XX", //range + "XX|XX|XX", + "M2|M1 AND EX:250|M2", //range + ], + category: "weapons", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} \ No newline at end of file From b23591b43d7b1165eac29a4d0b1c9ae516905d8f Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:55:09 -0400 Subject: [PATCH 02/14] Purple Guy's Mod v0.1 -6 new elements in their own "Purple Guy's Mod" category -Keep in mind that I got most of this code from Ryan, so my knowledge of JS is very limited and I can only do certain things. --- purple_guys_mod.js | 72 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 purple_guys_mod.js diff --git a/purple_guys_mod.js b/purple_guys_mod.js new file mode 100644 index 00000000..99cf6d93 --- /dev/null +++ b/purple_guys_mod.js @@ -0,0 +1,72 @@ +elements.super_bomb = { + color: "#551c41", + behavior: [ + "XX|EX:125|XX", + "XX|XX|XX", + "M2|M1 AND EX:125|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.mega_bomb = { + color: "#736e7e", + behavior: [ + "XX|EX:350|XX", + "XX|XX|XX", + "M2|M1 AND EX:350|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.dirty_sand = { + color: ["#a35222", "#a15122", "#7e3f1a", "#f4ba9a", "#fed3ba", "#f2b796"], + behavior: behaviors.POWDER, + category: "Purple Guy's Mod", + state: "solid", + density: 2822 +} + +elements.wet_dirty_sand = { + color: ["#a35210", "#a15110", "#7e3f0a", "#f4ba8a", "#fed2ba", "#f2b784"], + behavior: behaviors.POWDER, + category: "Purple Guy's Mod", + state: "liquid", + density: 2822 +} + +elements.reverse_gravity_liquid = { + color: "#cdd7e2", + behavior: behaviors.AGFLUID , + category: "Purple Guy's Mod", + state: "liquid", + density: 50 +} + +elements.reverse_soda = { + color: ["#5f2706", "#48230d", "#52250a"], + behavior: behaviors.AGFLUID , behavior: [ + "M2|M1|M2", + "M2|XX|M2", + "XX|CR:foam%3|XX", + ], + category: "Purple Guy's Mod", + state: "liquid", + density: 1030 +} + +if (!elements.sand.reactions) { elements.sand.reactions = {} } +elements.sand.reactions.dirt = { elem1:"dirty_sand", elem2:"dirty_sand" } + +if (!elements.dirty_sand.reactions) { elements.dirty_sand.reactions = {} } +elements.dirty_sand.reactions.water = { elem1:"wet_dirty_sand", elem2:"wet_dirty_sand" } + +if (!elements.soda.reactions) { elements.soda.reactions = {} } +elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } \ No newline at end of file From a9e982aa5371fdca4aa7dcfe91369946991fa341 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:58:53 -0400 Subject: [PATCH 03/14] Add files via upload --- purple_guys_mod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/purple_guys_mod.js b/purple_guys_mod.js index 99cf6d93..e9d3a7d2 100644 --- a/purple_guys_mod.js +++ b/purple_guys_mod.js @@ -52,7 +52,7 @@ elements.reverse_gravity_liquid = { elements.reverse_soda = { color: ["#5f2706", "#48230d", "#52250a"], - behavior: behaviors.AGFLUID , behavior: [ + behavior: behaviors.AGLIQUID , behavior: [ "M2|M1|M2", "M2|XX|M2", "XX|CR:foam%3|XX", From 592a27e7ee7c1a49c7df582d0b879861bb0da9cf Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Mon, 18 Mar 2024 23:01:01 -0400 Subject: [PATCH 04/14] Add files via upload From fb0017c5b50d4490368ab91b4809f5c1430555e9 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Mon, 18 Mar 2024 23:03:14 -0400 Subject: [PATCH 05/14] Purple Guy's Mod v0.1 -Adds 6 new elements -Keep in mind that my coding is limited & I got most of my code from Ryan. From 06caff441c08c8f58a783c83ed9d82976e59f0d6 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Tue, 19 Mar 2024 07:43:47 -0400 Subject: [PATCH 06/14] Purple Guy's Mod v0.1 -6 new elements! -Please remember that I got most of my code from Ryan and I am very limited to the code I know. --- purple_guys_mod.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/purple_guys_mod.js b/purple_guys_mod.js index e9d3a7d2..27c8c9f2 100644 --- a/purple_guys_mod.js +++ b/purple_guys_mod.js @@ -44,7 +44,7 @@ elements.wet_dirty_sand = { elements.reverse_gravity_liquid = { color: "#cdd7e2", - behavior: behaviors.AGFLUID , + behavior: behaviors.AGLIQUID , category: "Purple Guy's Mod", state: "liquid", density: 50 @@ -57,6 +57,7 @@ elements.reverse_soda = { "M2|XX|M2", "XX|CR:foam%3|XX", ], + category: "Purple Guy's Mod", state: "liquid", density: 1030 From 2b64e845893e99ed3d150e2be4fedc6fcce0ea04 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Tue, 19 Mar 2024 09:02:37 -0400 Subject: [PATCH 07/14] Purple Guy's Mod v0.1 -Adds 15 new elements! -Keep in mind that I'm limited to some stuff, and I also got a lot of my code from Ryan. --- purple_guys_mod.js | 102 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 101 insertions(+), 1 deletion(-) diff --git a/purple_guys_mod.js b/purple_guys_mod.js index 27c8c9f2..78f4257f 100644 --- a/purple_guys_mod.js +++ b/purple_guys_mod.js @@ -26,6 +26,35 @@ elements.mega_bomb = { cooldown: defaultCooldown } +elements.ultra_bomb = { + color: "#79910a", + behavior: [ + "XX|EX:500>plasma2|XX", + "XX|XX|XX", + "M2|M1 AND EX:500>plasma2|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.ice_cream_bomb = { + color: "#ffffff", + behavior: [ + "XX|EX:20>ice_cream|XX", + "XX|XX|XX", + "M2|M1 AND EX:20>ice_cream|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + + elements.dirty_sand = { color: ["#a35222", "#a15122", "#7e3f1a", "#f4ba9a", "#fed3ba", "#f2b796"], behavior: behaviors.POWDER, @@ -63,6 +92,74 @@ elements.reverse_soda = { density: 1030 } +elements.negatively_dense_liquid = { + color: "#94ffd1", + behavior: behaviors.LIQUID , + category: "Purple Guy's Mod", + state: "liquid", + density: -2000 +} + +elements.plasma2 = { + color: "#caf7ff", + behavior: behaviors.DGAS , + category: "Purple Guy's Mod", + state: "gas", + density: 50000, + temp:500000 +} + +elements.negative_fire = { + color: ["#a6bfc4", "#6bd2e4", "#b8dee4", "#32cae4"], + behavior: behaviors.DGAS , + category: "Purple Guy's Mod", + state: "gas", + density: -0.1, + temp:-20000 +} + +elements.coldest_bomb = { + color: "#fffff0", + behavior: [ + "XX|EX:55>negative_fire|XX", + "XX|XX|XX", + "M2|M1 AND EX:55>negative_fire|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.reinforced_wall = { + color: "#ffff01", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + hardness:10^81 +} + +elements.unreinforced_wall = { + color: "#ffff82", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + hardness:0 +} + +elements.reinforced_liquid_wall = { + color: "#ffff01", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "liquid", + density: 1300, + hardness:10^81 +} + + if (!elements.sand.reactions) { elements.sand.reactions = {} } elements.sand.reactions.dirt = { elem1:"dirty_sand", elem2:"dirty_sand" } @@ -70,4 +167,7 @@ if (!elements.dirty_sand.reactions) { elements.dirty_sand.reactions = {} } elements.dirty_sand.reactions.water = { elem1:"wet_dirty_sand", elem2:"wet_dirty_sand" } if (!elements.soda.reactions) { elements.soda.reactions = {} } -elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } \ No newline at end of file +elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } + +if (!elements.wall.reactions) { elements.wall.reactions = {} } +elements.wall.reactions.plasma2 = { elem1:"plasma2", elem2:"plasma2" } \ No newline at end of file From 8f993dcebe6865192e636c2f3ca7d7d234fe10b2 Mon Sep 17 00:00:00 2001 From: ChoinkaXD <164022409+ChoinkaXD@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:06:37 +0100 Subject: [PATCH 08/14] Update pl.json I added/modified some of the translations, as i am polish, and i know english (polish too) well. --- lang/pl.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/lang/pl.json b/lang/pl.json index 795478c5..24b86d2c 100644 --- a/lang/pl.json +++ b/lang/pl.json @@ -1,6 +1,6 @@ { "#lang.name": "Polski", -"#lang.credit": "ggod, _ilikepizza_", +"#lang.credit": "ggod, _ilikepizza_, ChoinkaXD", "land":"teren", "liquids":"płyny", "life":"życie", @@ -20,7 +20,7 @@ "pick":"wybierz", "mix":"mieszaj", "lookup":"wyszukaj", -"shock":"poraź", +"shock":"wstrząśnij", "paint":"maluj", "sand":"piasek", "water":"woda", @@ -35,7 +35,7 @@ "rock":"kamień", "rock_wall":"skała", "mudstone":"mułowiec", -"packed_sand":"zbity_piasek", +"packed_sand":"ubity_piasek", "plant":"roślina", "dead_plant":"martwa_roślina", "frozen_plant":"zamrożona_roślina", @@ -50,7 +50,7 @@ "rime":"szron", "snow":"śnieg", "slush":"błoto_pośniegowe", -"packed_snow":"zbity_śnieg", +"packed_snow":"ubity_śnieg", "wood":"drewno", "smoke":"dym", "magma":"magma", @@ -412,7 +412,7 @@ "gold_coin":"złota_moneta", "rust":"rdza", "oxidized_copper":"utleniona_miedź", -"alga":"AlGa", +"alga":"Alga", "metal_scrap":"kawałki_metalu", "glass_shard":"odłamek_szkła", "rad_shard":"odłamek_radioaktywnego_szkła", @@ -472,7 +472,7 @@ "armageddon":"armagedon", "tesla_coil":"cewka_tesli", "light_bulb":"żarówka", -"shocker":"porażacz", +"shocker":"wstrząsacz", "pressure_plate":"płytka_naciskowa", "primordial_soup":"zupa_pierwotna", "molten_slag":"stopiony_żużel", @@ -528,20 +528,20 @@ "molten_sodium_acetate":"stopiony_octan_sodu", "frozen_nitro":"zamrożona_nitrogliceryna", "cured_meat": "", -"nut_oil": "", +"nut_oil": "olej z orzechów", "grease": "", -"fat": "", -"potassium": "", -"molten_potassium": "", +"fat": "tłuszcz", +"potassium": "potas", +"molten_potassium": "roztopiony_potas", "magnesium": "", "molten_magnesium": "", -"sandstorm": "", +"sandstorm": "burza_piaskowa", "caustic_potash": "", "antibomb": "", -"tornado": "", -"earthquake": "", -"tsunami": "", -"blaster": "", +"tornado": "tornado", +"earthquake": "trzęsienie_ziemi", +"tsunami": "tsunami", +"blaster": "promień", "propane_ice": "", "molten_caustic_potash": "" -} \ No newline at end of file +} From 4b6ed00a82a757b97adc6dd1778d8869aed1bb0b Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Tue, 19 Mar 2024 11:12:33 -0400 Subject: [PATCH 09/14] Deleted cool_explosives.js i deleted cool_explosives --- cool_explosives.js | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 cool_explosives.js diff --git a/cool_explosives.js b/cool_explosives.js deleted file mode 100644 index 128e5d6d..00000000 --- a/cool_explosives.js +++ /dev/null @@ -1,13 +0,0 @@ -elements.super_bomb = { // create the bomb - color: "#524c41", //color - behavior: [ - "XX|EX:250|XX", //range - "XX|XX|XX", - "M2|M1 AND EX:250|M2", //range - ], - category: "weapons", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} \ No newline at end of file From 454629dd51632e9c43adf16d6f6fc14697506635 Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Tue, 19 Mar 2024 12:27:57 -0400 Subject: [PATCH 10/14] Delete purple_guys_mod.js --- purple_guys_mod.js | 173 --------------------------------------------- 1 file changed, 173 deletions(-) delete mode 100644 purple_guys_mod.js diff --git a/purple_guys_mod.js b/purple_guys_mod.js deleted file mode 100644 index 78f4257f..00000000 --- a/purple_guys_mod.js +++ /dev/null @@ -1,173 +0,0 @@ -elements.super_bomb = { - color: "#551c41", - behavior: [ - "XX|EX:125|XX", - "XX|XX|XX", - "M2|M1 AND EX:125|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.mega_bomb = { - color: "#736e7e", - behavior: [ - "XX|EX:350|XX", - "XX|XX|XX", - "M2|M1 AND EX:350|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.ultra_bomb = { - color: "#79910a", - behavior: [ - "XX|EX:500>plasma2|XX", - "XX|XX|XX", - "M2|M1 AND EX:500>plasma2|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.ice_cream_bomb = { - color: "#ffffff", - behavior: [ - "XX|EX:20>ice_cream|XX", - "XX|XX|XX", - "M2|M1 AND EX:20>ice_cream|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - - -elements.dirty_sand = { - color: ["#a35222", "#a15122", "#7e3f1a", "#f4ba9a", "#fed3ba", "#f2b796"], - behavior: behaviors.POWDER, - category: "Purple Guy's Mod", - state: "solid", - density: 2822 -} - -elements.wet_dirty_sand = { - color: ["#a35210", "#a15110", "#7e3f0a", "#f4ba8a", "#fed2ba", "#f2b784"], - behavior: behaviors.POWDER, - category: "Purple Guy's Mod", - state: "liquid", - density: 2822 -} - -elements.reverse_gravity_liquid = { - color: "#cdd7e2", - behavior: behaviors.AGLIQUID , - category: "Purple Guy's Mod", - state: "liquid", - density: 50 -} - -elements.reverse_soda = { - color: ["#5f2706", "#48230d", "#52250a"], - behavior: behaviors.AGLIQUID , behavior: [ - "M2|M1|M2", - "M2|XX|M2", - "XX|CR:foam%3|XX", - ], - - category: "Purple Guy's Mod", - state: "liquid", - density: 1030 -} - -elements.negatively_dense_liquid = { - color: "#94ffd1", - behavior: behaviors.LIQUID , - category: "Purple Guy's Mod", - state: "liquid", - density: -2000 -} - -elements.plasma2 = { - color: "#caf7ff", - behavior: behaviors.DGAS , - category: "Purple Guy's Mod", - state: "gas", - density: 50000, - temp:500000 -} - -elements.negative_fire = { - color: ["#a6bfc4", "#6bd2e4", "#b8dee4", "#32cae4"], - behavior: behaviors.DGAS , - category: "Purple Guy's Mod", - state: "gas", - density: -0.1, - temp:-20000 -} - -elements.coldest_bomb = { - color: "#fffff0", - behavior: [ - "XX|EX:55>negative_fire|XX", - "XX|XX|XX", - "M2|M1 AND EX:55>negative_fire|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.reinforced_wall = { - color: "#ffff01", - behavior: behaviors.WALL, - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - hardness:10^81 -} - -elements.unreinforced_wall = { - color: "#ffff82", - behavior: behaviors.WALL, - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - hardness:0 -} - -elements.reinforced_liquid_wall = { - color: "#ffff01", - behavior: behaviors.WALL, - category: "Purple Guy's Mod", - state: "liquid", - density: 1300, - hardness:10^81 -} - - -if (!elements.sand.reactions) { elements.sand.reactions = {} } -elements.sand.reactions.dirt = { elem1:"dirty_sand", elem2:"dirty_sand" } - -if (!elements.dirty_sand.reactions) { elements.dirty_sand.reactions = {} } -elements.dirty_sand.reactions.water = { elem1:"wet_dirty_sand", elem2:"wet_dirty_sand" } - -if (!elements.soda.reactions) { elements.soda.reactions = {} } -elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } - -if (!elements.wall.reactions) { elements.wall.reactions = {} } -elements.wall.reactions.plasma2 = { elem1:"plasma2", elem2:"plasma2" } \ No newline at end of file From 654a34abc197ea963385ad8f83d9b54a4f0cad61 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Tue, 19 Mar 2024 12:41:55 -0400 Subject: [PATCH 11/14] Purple Guy's Mod v0.1 v0.1 -15 New Elements -Keep in mind that most of my code came from Ryan. --- purple_guys_mod.js | 173 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100644 purple_guys_mod.js diff --git a/purple_guys_mod.js b/purple_guys_mod.js new file mode 100644 index 00000000..78f4257f --- /dev/null +++ b/purple_guys_mod.js @@ -0,0 +1,173 @@ +elements.super_bomb = { + color: "#551c41", + behavior: [ + "XX|EX:125|XX", + "XX|XX|XX", + "M2|M1 AND EX:125|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.mega_bomb = { + color: "#736e7e", + behavior: [ + "XX|EX:350|XX", + "XX|XX|XX", + "M2|M1 AND EX:350|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.ultra_bomb = { + color: "#79910a", + behavior: [ + "XX|EX:500>plasma2|XX", + "XX|XX|XX", + "M2|M1 AND EX:500>plasma2|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.ice_cream_bomb = { + color: "#ffffff", + behavior: [ + "XX|EX:20>ice_cream|XX", + "XX|XX|XX", + "M2|M1 AND EX:20>ice_cream|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + + +elements.dirty_sand = { + color: ["#a35222", "#a15122", "#7e3f1a", "#f4ba9a", "#fed3ba", "#f2b796"], + behavior: behaviors.POWDER, + category: "Purple Guy's Mod", + state: "solid", + density: 2822 +} + +elements.wet_dirty_sand = { + color: ["#a35210", "#a15110", "#7e3f0a", "#f4ba8a", "#fed2ba", "#f2b784"], + behavior: behaviors.POWDER, + category: "Purple Guy's Mod", + state: "liquid", + density: 2822 +} + +elements.reverse_gravity_liquid = { + color: "#cdd7e2", + behavior: behaviors.AGLIQUID , + category: "Purple Guy's Mod", + state: "liquid", + density: 50 +} + +elements.reverse_soda = { + color: ["#5f2706", "#48230d", "#52250a"], + behavior: behaviors.AGLIQUID , behavior: [ + "M2|M1|M2", + "M2|XX|M2", + "XX|CR:foam%3|XX", + ], + + category: "Purple Guy's Mod", + state: "liquid", + density: 1030 +} + +elements.negatively_dense_liquid = { + color: "#94ffd1", + behavior: behaviors.LIQUID , + category: "Purple Guy's Mod", + state: "liquid", + density: -2000 +} + +elements.plasma2 = { + color: "#caf7ff", + behavior: behaviors.DGAS , + category: "Purple Guy's Mod", + state: "gas", + density: 50000, + temp:500000 +} + +elements.negative_fire = { + color: ["#a6bfc4", "#6bd2e4", "#b8dee4", "#32cae4"], + behavior: behaviors.DGAS , + category: "Purple Guy's Mod", + state: "gas", + density: -0.1, + temp:-20000 +} + +elements.coldest_bomb = { + color: "#fffff0", + behavior: [ + "XX|EX:55>negative_fire|XX", + "XX|XX|XX", + "M2|M1 AND EX:55>negative_fire|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.reinforced_wall = { + color: "#ffff01", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + hardness:10^81 +} + +elements.unreinforced_wall = { + color: "#ffff82", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + hardness:0 +} + +elements.reinforced_liquid_wall = { + color: "#ffff01", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "liquid", + density: 1300, + hardness:10^81 +} + + +if (!elements.sand.reactions) { elements.sand.reactions = {} } +elements.sand.reactions.dirt = { elem1:"dirty_sand", elem2:"dirty_sand" } + +if (!elements.dirty_sand.reactions) { elements.dirty_sand.reactions = {} } +elements.dirty_sand.reactions.water = { elem1:"wet_dirty_sand", elem2:"wet_dirty_sand" } + +if (!elements.soda.reactions) { elements.soda.reactions = {} } +elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } + +if (!elements.wall.reactions) { elements.wall.reactions = {} } +elements.wall.reactions.plasma2 = { elem1:"plasma2", elem2:"plasma2" } \ No newline at end of file From 162924c5a9c76c20e6b20fd34b11ff9dd6c69b21 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Tue, 19 Mar 2024 12:58:32 -0400 Subject: [PATCH 12/14] Purple Guy's Mod v0.1 v0.1 -15 New Elements (5 bombs, 5 liquids, 2 gasses, 2 new walls, and 1 new powder!) -Keep in mind that my knowledge of JS is very low, and I got most of this code from Ryan or other people from the Discord server. --- mods/purple_guys_mod.js | 173 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100644 mods/purple_guys_mod.js diff --git a/mods/purple_guys_mod.js b/mods/purple_guys_mod.js new file mode 100644 index 00000000..78f4257f --- /dev/null +++ b/mods/purple_guys_mod.js @@ -0,0 +1,173 @@ +elements.super_bomb = { + color: "#551c41", + behavior: [ + "XX|EX:125|XX", + "XX|XX|XX", + "M2|M1 AND EX:125|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.mega_bomb = { + color: "#736e7e", + behavior: [ + "XX|EX:350|XX", + "XX|XX|XX", + "M2|M1 AND EX:350|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.ultra_bomb = { + color: "#79910a", + behavior: [ + "XX|EX:500>plasma2|XX", + "XX|XX|XX", + "M2|M1 AND EX:500>plasma2|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.ice_cream_bomb = { + color: "#ffffff", + behavior: [ + "XX|EX:20>ice_cream|XX", + "XX|XX|XX", + "M2|M1 AND EX:20>ice_cream|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + + +elements.dirty_sand = { + color: ["#a35222", "#a15122", "#7e3f1a", "#f4ba9a", "#fed3ba", "#f2b796"], + behavior: behaviors.POWDER, + category: "Purple Guy's Mod", + state: "solid", + density: 2822 +} + +elements.wet_dirty_sand = { + color: ["#a35210", "#a15110", "#7e3f0a", "#f4ba8a", "#fed2ba", "#f2b784"], + behavior: behaviors.POWDER, + category: "Purple Guy's Mod", + state: "liquid", + density: 2822 +} + +elements.reverse_gravity_liquid = { + color: "#cdd7e2", + behavior: behaviors.AGLIQUID , + category: "Purple Guy's Mod", + state: "liquid", + density: 50 +} + +elements.reverse_soda = { + color: ["#5f2706", "#48230d", "#52250a"], + behavior: behaviors.AGLIQUID , behavior: [ + "M2|M1|M2", + "M2|XX|M2", + "XX|CR:foam%3|XX", + ], + + category: "Purple Guy's Mod", + state: "liquid", + density: 1030 +} + +elements.negatively_dense_liquid = { + color: "#94ffd1", + behavior: behaviors.LIQUID , + category: "Purple Guy's Mod", + state: "liquid", + density: -2000 +} + +elements.plasma2 = { + color: "#caf7ff", + behavior: behaviors.DGAS , + category: "Purple Guy's Mod", + state: "gas", + density: 50000, + temp:500000 +} + +elements.negative_fire = { + color: ["#a6bfc4", "#6bd2e4", "#b8dee4", "#32cae4"], + behavior: behaviors.DGAS , + category: "Purple Guy's Mod", + state: "gas", + density: -0.1, + temp:-20000 +} + +elements.coldest_bomb = { + color: "#fffff0", + behavior: [ + "XX|EX:55>negative_fire|XX", + "XX|XX|XX", + "M2|M1 AND EX:55>negative_fire|M2", + ], + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + excludeRandom: true, + cooldown: defaultCooldown +} + +elements.reinforced_wall = { + color: "#ffff01", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + hardness:10^81 +} + +elements.unreinforced_wall = { + color: "#ffff82", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "solid", + density: 1300, + hardness:0 +} + +elements.reinforced_liquid_wall = { + color: "#ffff01", + behavior: behaviors.WALL, + category: "Purple Guy's Mod", + state: "liquid", + density: 1300, + hardness:10^81 +} + + +if (!elements.sand.reactions) { elements.sand.reactions = {} } +elements.sand.reactions.dirt = { elem1:"dirty_sand", elem2:"dirty_sand" } + +if (!elements.dirty_sand.reactions) { elements.dirty_sand.reactions = {} } +elements.dirty_sand.reactions.water = { elem1:"wet_dirty_sand", elem2:"wet_dirty_sand" } + +if (!elements.soda.reactions) { elements.soda.reactions = {} } +elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } + +if (!elements.wall.reactions) { elements.wall.reactions = {} } +elements.wall.reactions.plasma2 = { elem1:"plasma2", elem2:"plasma2" } \ No newline at end of file From 070e7bbfa55bb5cf40c622ad7c9cbcf12dce7c27 Mon Sep 17 00:00:00 2001 From: GuyWhoGotSpringlocked <163777207+GWhoGS@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:00:09 -0400 Subject: [PATCH 13/14] Deleted purple_guys_mod.js there was an extra file --- purple_guys_mod.js | 173 --------------------------------------------- 1 file changed, 173 deletions(-) delete mode 100644 purple_guys_mod.js diff --git a/purple_guys_mod.js b/purple_guys_mod.js deleted file mode 100644 index 78f4257f..00000000 --- a/purple_guys_mod.js +++ /dev/null @@ -1,173 +0,0 @@ -elements.super_bomb = { - color: "#551c41", - behavior: [ - "XX|EX:125|XX", - "XX|XX|XX", - "M2|M1 AND EX:125|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.mega_bomb = { - color: "#736e7e", - behavior: [ - "XX|EX:350|XX", - "XX|XX|XX", - "M2|M1 AND EX:350|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.ultra_bomb = { - color: "#79910a", - behavior: [ - "XX|EX:500>plasma2|XX", - "XX|XX|XX", - "M2|M1 AND EX:500>plasma2|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.ice_cream_bomb = { - color: "#ffffff", - behavior: [ - "XX|EX:20>ice_cream|XX", - "XX|XX|XX", - "M2|M1 AND EX:20>ice_cream|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - - -elements.dirty_sand = { - color: ["#a35222", "#a15122", "#7e3f1a", "#f4ba9a", "#fed3ba", "#f2b796"], - behavior: behaviors.POWDER, - category: "Purple Guy's Mod", - state: "solid", - density: 2822 -} - -elements.wet_dirty_sand = { - color: ["#a35210", "#a15110", "#7e3f0a", "#f4ba8a", "#fed2ba", "#f2b784"], - behavior: behaviors.POWDER, - category: "Purple Guy's Mod", - state: "liquid", - density: 2822 -} - -elements.reverse_gravity_liquid = { - color: "#cdd7e2", - behavior: behaviors.AGLIQUID , - category: "Purple Guy's Mod", - state: "liquid", - density: 50 -} - -elements.reverse_soda = { - color: ["#5f2706", "#48230d", "#52250a"], - behavior: behaviors.AGLIQUID , behavior: [ - "M2|M1|M2", - "M2|XX|M2", - "XX|CR:foam%3|XX", - ], - - category: "Purple Guy's Mod", - state: "liquid", - density: 1030 -} - -elements.negatively_dense_liquid = { - color: "#94ffd1", - behavior: behaviors.LIQUID , - category: "Purple Guy's Mod", - state: "liquid", - density: -2000 -} - -elements.plasma2 = { - color: "#caf7ff", - behavior: behaviors.DGAS , - category: "Purple Guy's Mod", - state: "gas", - density: 50000, - temp:500000 -} - -elements.negative_fire = { - color: ["#a6bfc4", "#6bd2e4", "#b8dee4", "#32cae4"], - behavior: behaviors.DGAS , - category: "Purple Guy's Mod", - state: "gas", - density: -0.1, - temp:-20000 -} - -elements.coldest_bomb = { - color: "#fffff0", - behavior: [ - "XX|EX:55>negative_fire|XX", - "XX|XX|XX", - "M2|M1 AND EX:55>negative_fire|M2", - ], - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - excludeRandom: true, - cooldown: defaultCooldown -} - -elements.reinforced_wall = { - color: "#ffff01", - behavior: behaviors.WALL, - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - hardness:10^81 -} - -elements.unreinforced_wall = { - color: "#ffff82", - behavior: behaviors.WALL, - category: "Purple Guy's Mod", - state: "solid", - density: 1300, - hardness:0 -} - -elements.reinforced_liquid_wall = { - color: "#ffff01", - behavior: behaviors.WALL, - category: "Purple Guy's Mod", - state: "liquid", - density: 1300, - hardness:10^81 -} - - -if (!elements.sand.reactions) { elements.sand.reactions = {} } -elements.sand.reactions.dirt = { elem1:"dirty_sand", elem2:"dirty_sand" } - -if (!elements.dirty_sand.reactions) { elements.dirty_sand.reactions = {} } -elements.dirty_sand.reactions.water = { elem1:"wet_dirty_sand", elem2:"wet_dirty_sand" } - -if (!elements.soda.reactions) { elements.soda.reactions = {} } -elements.soda.reactions.reverse_gravity_liquid = { elem1:"reverse_soda", elem2:"reverse_soda" } - -if (!elements.wall.reactions) { elements.wall.reactions = {} } -elements.wall.reactions.plasma2 = { elem1:"plasma2", elem2:"plasma2" } \ No newline at end of file From 4ea46197f49d195c6cf2a7853e3d77641624c6ff Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Tue, 19 Mar 2024 19:36:31 -0400 Subject: [PATCH 14/14] translation --- lang/de.json | 4 -- lang/es.json | 4 -- lang/fr.json | 4 -- lang/hu.json | 4 -- lang/pl.json | 4 -- lang/pt_br.json | 4 -- lang/ru.json | 4 -- lang/template.json | 4 -- lang/tok.json | 4 -- lang/uk.json | 4 -- lang/vi.json | 4 -- lang/zh_cn.json | 128 ++++++++++++++++++++++----------------------- lang/zh_hant.json | 4 -- 13 files changed, 62 insertions(+), 114 deletions(-) diff --git a/lang/de.json b/lang/de.json index 2a365ce0..3e471bd0 100644 --- a/lang/de.json +++ b/lang/de.json @@ -457,18 +457,14 @@ "greek_fire":"Griechisches_Feuer", "fireball":"Feuerball", "rocket":"Rakete", -"sticky_bomb":"Klebrige_bombe", "cold_bomb":"Kalte_bombe", "hot_bomb":"Heiße_bombe", -"electro_bomb":"Electrobombe", -"water_bomb":"Wasserbombe", "antimatter_bomb":"Antimaterie bombe", "party_popper":"Party-Popper", "flashbang":"LichtKnall", "flash":"Lichtschnelle", "smoke_grenade":"Rauchgranate", "landmine":"Landmine", -"cluster_bomb":"Streubomben", "armageddon":"Armageddon", "tesla_coil":"Tesla-Spule", "light_bulb":"Glühbirne", diff --git a/lang/es.json b/lang/es.json index b65d9e78..31123ab2 100644 --- a/lang/es.json +++ b/lang/es.json @@ -457,18 +457,14 @@ "greek_fire":"", "fireball":"", "rocket":"", -"sticky_bomb":"", "cold_bomb":"", "hot_bomb":"", -"electro_bomb":"", -"water_bomb":"", "antimatter_bomb":"", "party_popper":"", "flashbang":"", "flash":"", "smoke_grenade":"", "landmine":"", -"cluster_bomb":"", "armageddon":"", "tesla_coil":"", "light_bulb":"", diff --git a/lang/fr.json b/lang/fr.json index 3a1f936d..e2d0d0af 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -457,18 +457,14 @@ "greek_fire":"Feu grec", "fireball":"Boule de feu", "rocket":"Fusée", -"sticky_bomb":"Bombe collante", "cold_bomb":"Bombe froide", "hot_bomb":"Bombe chaude", -"electro_bomb":"Bombe électro", -"water_bomb":"Bombe à eau", "antimatter_bomb":"Bombe antimatière", "party_popper":"Bombe de table", "flashbang":"Flashbang", "flash":"Éclair", "smoke_grenade":"Grenade fumigène", "landmine":"Mine terrestre", -"cluster_bomb":"Bombe à fragmentation", "armageddon":"Armageddon", "tesla_coil":"Bobine Tesla", "light_bulb":"Ampoule", diff --git a/lang/hu.json b/lang/hu.json index 40e65a67..19ff0198 100644 --- a/lang/hu.json +++ b/lang/hu.json @@ -457,18 +457,14 @@ "greek_fire":"görögtűz", "fireball":"tűzgolyó", "rocket":"rakéta", -"sticky_bomb":"ragacsos_bomba", "cold_bomb":"hideg_bomba", "hot_bomb":"forró_bomba", -"electro_bomb":"elektromos_bomba", -"water_bomb":"vízi_bomba", "antimatter_bomb":"antianyag_bomba", "party_popper":"konfetti_durrancs", "flashbang":"villanógránát", "flash":"villanás", "smoke_grenade":"füstgránát", "landmine":"taposóakna", -"cluster_bomb":"kazettás_bomba", "armageddon":"armageddon", "tesla_coil":"teszlatekercs", "light_bulb":"villanykörte", diff --git a/lang/pl.json b/lang/pl.json index 795478c5..645fce31 100644 --- a/lang/pl.json +++ b/lang/pl.json @@ -457,18 +457,14 @@ "greek_fire":"ogień_grecki", "fireball":"kula_ognia", "rocket":"rakieta", -"sticky_bomb":"klejąca_bomba", "cold_bomb":"zimna_bomba", "hot_bomb":"gorąca_bomba", -"electro_bomb":"elektro_bomba", -"water_bomb":"bomba_wodna", "antimatter_bomb":"bomba_antymateryjna", "party_popper":"pukawka", "flashbang":"flashbang", "flash":"błysk", "smoke_grenade":"granat_dymny", "landmine":"mina", -"cluster_bomb":"bomba_kasetowa", "armageddon":"armagedon", "tesla_coil":"cewka_tesli", "light_bulb":"żarówka", diff --git a/lang/pt_br.json b/lang/pt_br.json index 1e7a509c..4e3e6ffa 100644 --- a/lang/pt_br.json +++ b/lang/pt_br.json @@ -457,18 +457,14 @@ "greek_fire":"fogo_grego", "fireball":"bola_de_fogo", "rocket":"foguete", -"sticky_bomb":"bomba_pegajosa", "cold_bomb":"bomba_fria", "hot_bomb":"bomba_quente", -"electro_bomb":"bomba_electro", -"water_bomb":"bomba_de_água", "antimatter_bomb":"bomba_antimateria", "party_popper":"popper_de_festa", "flashbang":"granada_de_luz", "flash":"flash", "smoke_grenade":"grenada_de_fumaça", "landmine":"mina_terrestre", -"cluster_bomb":"bomba_coletiva", "armageddon":"armagedom", "tesla_coil":"bobina_de_tesla", "light_bulb":"lampada", diff --git a/lang/ru.json b/lang/ru.json index e1492094..63134399 100644 --- a/lang/ru.json +++ b/lang/ru.json @@ -457,18 +457,14 @@ "greek_fire":"", "fireball":"", "rocket":"", -"sticky_bomb":"", "cold_bomb":"", "hot_bomb":"", -"electro_bomb":"", -"water_bomb":"", "antimatter_bomb":"", "party_popper":"", "flashbang":"", "flash":"", "smoke_grenade":"дымовая граната", "landmine":"мина", -"cluster_bomb":"кластерная бомба", "armageddon":"", "tesla_coil":"", "light_bulb":"", diff --git a/lang/template.json b/lang/template.json index 933aac39..0d5eb96e 100644 --- a/lang/template.json +++ b/lang/template.json @@ -457,18 +457,14 @@ "greek_fire": "", "fireball": "", "rocket": "", -"sticky_bomb": "", "cold_bomb": "", "hot_bomb": "", -"electro_bomb": "", -"water_bomb": "", "antimatter_bomb": "", "party_popper": "", "flashbang": "", "flash": "", "smoke_grenade": "", "landmine": "", -"cluster_bomb": "", "armageddon": "", "tesla_coil": "", "light_bulb": "", diff --git a/lang/tok.json b/lang/tok.json index fe6b9257..e1996537 100644 --- a/lang/tok.json +++ b/lang/tok.json @@ -457,18 +457,14 @@ "greek_fire":"", "fireball":"", "rocket":"", -"sticky_bomb":"", "cold_bomb":"", "hot_bomb":"", -"electro_bomb":"", -"water_bomb":"", "antimatter_bomb":"", "party_popper":"", "flashbang":"", "flash":"suno_lili", "smoke_grenade":"", "landmine":"", -"cluster_bomb":"", "armageddon":"", "tesla_coil":"", "light_bulb":"", diff --git a/lang/uk.json b/lang/uk.json index e0469a47..85af6e33 100644 --- a/lang/uk.json +++ b/lang/uk.json @@ -457,18 +457,14 @@ "greek_fire":"", "fireball":"", "rocket":"", -"sticky_bomb":"", "cold_bomb":"", "hot_bomb":"", -"electro_bomb":"", -"water_bomb":"", "antimatter_bomb":"", "party_popper":"", "flashbang":"", "flash":"", "smoke_grenade":"", "landmine":"", -"cluster_bomb":"", "armageddon":"", "tesla_coil":"", "light_bulb":"", diff --git a/lang/vi.json b/lang/vi.json index 2e7dc1f6..1afe1c5b 100644 --- a/lang/vi.json +++ b/lang/vi.json @@ -458,18 +458,14 @@ "greek_fire": "Lửa Hi Lạp", "fireball": "Cầu lửa", "rocket": "Tên lửa", -"sticky_bomb": "Bom dính", "cold_bomb": "Bom lạnh", "hot_bomb": "Bom nóng", -"electro_bomb": "Bom điện", -"water_bomb": "Bom nước ", "antimatter_bomb": "Bom phản vật chất", "party_popper": "Pháo giấy", "flashbang": "Bom choáng ", "flash": "Chóp sáng", "smoke_grenade": "Lựu đạn khói", "landmine": "Mìn", -"cluster_bomb": "Bom cụm", "armageddon": "Tận thế", "tesla_coil": "Cuộn tesla", "light_bulb": "Bóng đèn", diff --git a/lang/zh_cn.json b/lang/zh_cn.json index 45c363d8..5ae22f25 100644 --- a/lang/zh_cn.json +++ b/lang/zh_cn.json @@ -40,17 +40,17 @@ "dead_plant":"死植物", "frozen_plant":"冰植物", "grass":"草", -"algae":"", -"concrete":"", +"algae":"藻类", +"concrete":"混凝土", "wall":"墙", "fire":"火", "bomb":"炸弹", "steam":"争气", "ice":"冰", -"rime":"", +"rime":"雾凇", "snow":"雪", "slush":"冰水", -"packed_snow":"", +"packed_snow":"积雪", "wood":"木", "smoke":"烟", "magma":"岩浆", @@ -70,20 +70,20 @@ "flour":"面粉", "wire":"电线", "battery":"电瓶", -"cloner":"", -"sensor":"", -"heater":"", -"cooler":"", +"cloner":"克隆机", +"sensor":"感受器", +"heater":"热机", +"cooler":"冷机", "random":"乱", "image":"图片", -"unpaint":"", -"uncharge":"", -"unburn":"", +"unpaint":"取消画", +"uncharge":"取消电", +"unburn":"取消烧", "smash":"砸", -"filler":"", +"filler":"填料", "lattice":"格子", -"gravel":"lishlish", -"slime":"", +"gravel":"碎石", +"slime":"粘液", "cement":"水泥", "dust":"灰尘", "void":"太虚", @@ -91,7 +91,7 @@ "cell":"细胞", "cancer":"癌", "dna":"DNA", -"plague":"", +"plague":"瘟疫", "worm":"蚯蚓", "frozen_worm":"冰蚯蚓", "flea":"跳蚤", @@ -99,10 +99,10 @@ "ant":"蚂蚁", "fly":"苍蝇", "firefly":"荧光虫", -"hive":"", +"hive":"蜜蜂窝", "bee":"蜜蜂", -"stink_bug":"", -"dead_bug":"", +"stink_bug":"臭虫", +"dead_bug":"死虫", "human":"人", "body":"生体", "head":"头", @@ -113,11 +113,11 @@ "tadpole":"蝌蚪", "fish":"鱼", "frozen_fish":"冰鱼", -"slug":"", +"slug":"蛞蝓", "snail":"蜗牛", -"burner":"", -"superheater":"", -"freezer":"", +"burner":"燃烧机", +"superheater":"过热机", +"freezer":"冷冻机", "pipe":"管", "pipe_wall":"管墙", "ewall":"电墙", @@ -138,47 +138,47 @@ "molten_ash":"熔融灰", "light":"光", "liquid_light":"夜光", -"laser":"", +"laser":"雷射", "ball":"圆圈", -"pointer":"", -"charcoal":"", -"tinder":"", -"sawdust":"", -"hail":"", +"pointer":"指针", +"charcoal":"木炭", +"tinder":"木材", +"sawdust":"锯末", +"hail":"冰雹", "hydrogen":"氢气", "oxygen":"氧气", "nitrogen":"氮气", "helium":"氦气", -"anesthesia":"", +"anesthesia":"麻醉", "ammonia":"氨气", "liquid_ammonia":"氨气液体", -"carbon_dioxide":"", +"carbon_dioxide":"二氧化碳", "oil":"油", -"lamp_oil":"", -"propane":"", -"methane":"", -"liquid_methane":"", -"stained_glass":"", -"molten_stained_glass":"", -"art":"", +"lamp_oil":"灯油", +"propane":"丙烷", +"methane":"甲烷", +"liquid_methane":"液甲烷", +"stained_glass":"彩色玻璃", +"molten_stained_glass":"熔彩色玻璃", +"art":"艺术", "rainbow":"彩虹", -"static":"", -"border":"", +"static":"電干扰", +"border":"边", "clay":"泥土", "clay_soil":"壤土", "brick":"砖", -"ruins":"", +"ruins":"废墟", "porcelain":"瓷", -"sapling":"", -"pinecone":"", -"evergreen":"", -"cactus":"", +"sapling":"树苗", +"pinecone":"松果", +"evergreen":"松树", +"cactus":"仙人掌", "seeds":"种子", "grass_seed":"草种子", -"wheat_seed":"", +"wheat_seed":"麦种子", "straw":"干草", "paper":"纸", -"pollen":"", +"pollen":"花粉", "flower_seed":"", "pistil":"", "petal":"", @@ -258,23 +258,23 @@ "molten_lead":"", "molten_solder":"", "juice":"果汁", -"juice_ice":"", +"juice_ice":"果汁冰", "broth":"汤", "milk":"牛奶", "chocolate_milk":"巧克力牛奶", -"fruit_milk":"", -"pilk":"", +"fruit_milk":"水果牛奶", +"pilk":"气水牛奶", "eggnog":"蛋奶", "egg":"蛋", "yolk":"蛋黄", "hard_yolk":"硬蛋黄", -"nut_milk":"", -"dough":"", -"batter":"", -"homunculus":"", +"nut_milk":"坚果奶", +"dough":"面团", +"batter":"面糊", +"homunculus":"何蒙库鲁兹", "butter":"牛油", "cheese":"芝士", -"rotten_cheese":"", +"rotten_cheese":"腐烂芝士", "chocolate":"巧克力", "grape":"葡萄", "vinegar":"醋", @@ -308,13 +308,13 @@ "nut_meat":"", "nut_butter":"", "jelly":"布丁", -"baking_soda":"", +"baking_soda":"苏打粉", "yogurt":"", "frozen_yogurt":"", "ice_cream":"冰淇凌", "cream":"奶油", "beans":"豆子", -"dry_ice":"", +"dry_ice":"干冰", "nitrogen_ice":"", "particleboard":"皮肤", "skin":"皮肤", @@ -374,7 +374,7 @@ "smog":"", "stench":"", "liquid_stench":"", -"fragrance":"", +"fragrance":"香水", "perfume":"香水", "cyanide":"", "cyanide_gas":"", @@ -408,7 +408,7 @@ "electric":"电", "uranium":"", "molten_uranium":"", -"diamond":"", +"diamond":"钻石", "gold_coin":"硬币", "rust":"", "oxidized_copper":"", @@ -457,18 +457,14 @@ "greek_fire":"", "fireball":"", "rocket":"", -"sticky_bomb":"粘炸弹", "cold_bomb":"冷炸弹", "hot_bomb":"热炸弹", -"electro_bomb":"电炸弹", -"water_bomb":"水炸弹", "antimatter_bomb":"", "party_popper":"", "flashbang":"光榴弹", "flash":"", "smoke_grenade":"烟榴弹", "landmine":"", -"cluster_bomb":"", "armageddon":"", "tesla_coil":"", "light_bulb":"灯泡", @@ -508,7 +504,7 @@ "broth_ice":"", "frozen_vinegar":"", "sauce_ice":"", -"alcohol_ice":"", +"alcohol_ice":"酒冰", "bleach_ice":"", "chlorine_ice":"", "frozen_ink":"", @@ -538,9 +534,9 @@ "sandstorm": "", "caustic_potash": "", "antibomb": "", -"tornado": "", -"earthquake": "", -"tsunami": "", +"tornado": "龙卷风", +"earthquake": "地震", +"tsunami": "海啸", "blaster": "", "propane_ice": "", "molten_caustic_potash": "" diff --git a/lang/zh_hant.json b/lang/zh_hant.json index 0b89f9fb..60f85a5a 100644 --- a/lang/zh_hant.json +++ b/lang/zh_hant.json @@ -457,18 +457,14 @@ "greek_fire":"希臘火", "fireball":"火球", "rocket":"火箭", -"sticky_bomb":"粘炸彈", "cold_bomb":"冷炸彈", "hot_bomb":"熱炸彈", -"electro_bomb":"電炸彈", -"water_bomb":"水炸彈", "antimatter_bomb":"反物質炸彈", "party_popper":"紙屑炸彈", "flashbang":"閃光彈", "flash":"閃光", "smoke_grenade":"煙炸藥", "landmine":"地雷", -"cluster_bomb":"集束炸彈", "armageddon":"世界末日", "tesla_coil":"特斯拉線圈", "light_bulb":"電燈",