From afcc826f8ab8b853829be7ddef54bffad7363f43 Mon Sep 17 00:00:00 2001 From: Atsuihsio <842960157@qq.com> Date: Mon, 9 Dec 2024 22:50:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=B2=89=E6=9C=AB=E7=83=A7?= =?UTF-8?q?=E7=82=BC=E7=9A=84=E9=85=8D=E6=96=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/atsuishio/superbwarfare/entity/DroneEntity.java | 1 - .../data/superbwarfare/recipes/lead_powder_blasting.json | 9 +++++++++ .../superbwarfare/recipes/silver_powder_blasting.json | 9 +++++++++ .../superbwarfare/recipes/tungsten_powder_blasting.json | 9 +++++++++ 4 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/data/superbwarfare/recipes/lead_powder_blasting.json create mode 100644 src/main/resources/data/superbwarfare/recipes/silver_powder_blasting.json create mode 100644 src/main/resources/data/superbwarfare/recipes/tungsten_powder_blasting.json diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/DroneEntity.java b/src/main/java/com/atsuishio/superbwarfare/entity/DroneEntity.java index 0016c7f27..dbdbbf04c 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/DroneEntity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/DroneEntity.java @@ -237,7 +237,6 @@ public class DroneEntity extends LivingEntity implements GeoEntity { if (!controller.level().isClientSide) { this.level().playSound(null, this.getOnPos(), ModSounds.DRONE_SOUND.get(), SoundSource.AMBIENT, 3, 1); } -// controller.setYRot((float) (controller.getYRot() - 50 * moveX)); } } diff --git a/src/main/resources/data/superbwarfare/recipes/lead_powder_blasting.json b/src/main/resources/data/superbwarfare/recipes/lead_powder_blasting.json new file mode 100644 index 000000000..5a0af7559 --- /dev/null +++ b/src/main/resources/data/superbwarfare/recipes/lead_powder_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "cookingtime": 100, + "experience": 0.3, + "ingredient": { + "tag": "forge:dusts/lead" + }, + "result": "superbwarfare:lead_ingot" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/recipes/silver_powder_blasting.json b/src/main/resources/data/superbwarfare/recipes/silver_powder_blasting.json new file mode 100644 index 000000000..496b37db8 --- /dev/null +++ b/src/main/resources/data/superbwarfare/recipes/silver_powder_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "cookingtime": 100, + "experience": 0.3, + "ingredient": { + "tag": "forge:dusts/silver" + }, + "result": "superbwarfare:silver_ingot" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/recipes/tungsten_powder_blasting.json b/src/main/resources/data/superbwarfare/recipes/tungsten_powder_blasting.json new file mode 100644 index 000000000..9360066ff --- /dev/null +++ b/src/main/resources/data/superbwarfare/recipes/tungsten_powder_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "cookingtime": 100, + "experience": 0.3, + "ingredient": { + "tag": "forge:dusts/tungsten" + }, + "result": "superbwarfare:tungsten_ingot" +} \ No newline at end of file