From c58b386ce5c44115971010f194ac6b0558cc6430 Mon Sep 17 00:00:00 2001 From: skyss0fly-pm-pl <144737802+skyss0fly-pm-pl@users.noreply.github.com> Date: Sun, 15 Oct 2023 12:51:59 +1000 Subject: [PATCH 1/2] Create Cobblestone.py --- block/Cobblestone.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 block/Cobblestone.py diff --git a/block/Cobblestone.py b/block/Cobblestone.py new file mode 100644 index 0000000..9645de6 --- /dev/null +++ b/block/Cobblestone.py @@ -0,0 +1,23 @@ +class Cobblestone: + def __init__(self): + self.id = "minecraft:cobblestone" + self.hardness = 0.7 + self.stack = 64 + self.placeability = "all" + self.light = 0 + self.gravity = False + self.sound = "dig.stone" + self.blast_resistance = 0 + self.flammable = False + self.slipperiness = 0.6 + self.solid = True + self.transparent = False + self.harvest_tool = "pickaxe" + self.harvest_material = "hand" + self.height = 1 + self.width = 1 + self.length = 1 + self.xp_range = (0,0) + self.drop = { + "minecraft:cobblestone": 100 + } From bb92667f818f14f6ed82b427dc1f6afa12c161c9 Mon Sep 17 00:00:00 2001 From: skyss0fly-pm-pl <144737802+skyss0fly-pm-pl@users.noreply.github.com> Date: Sun, 15 Oct 2023 13:01:22 +1000 Subject: [PATCH 2/2] Create Water.py --- block/Water.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 block/Water.py diff --git a/block/Water.py b/block/Water.py new file mode 100644 index 0000000..ecc7ae6 --- /dev/null +++ b/block/Water.py @@ -0,0 +1,23 @@ +class Liquid: + def __init__(self): + self.id = "minecraft:water" + self.hardness = 0 + self.stack = 0 + self.placeability = "all" + self.light = 0 + self.gravity = False + self.sound = "water.splash" + self.blast_resistance = 1 + self.flammable = False + self.slipperiness = 0.6 + self.solid = false + self.transparent = true + self.harvest_tool = "bucket" + self.harvest_material = "hand" + self.height = 1 + self.width = 1 + self.length = 1 + self.xp_range = (0,0) + self.drop = { + "minecraft:water_bucke": 100 + }