From 83195cbb9d2618e0f913f4d77f76bb5800f8950d Mon Sep 17 00:00:00 2001 From: nea Date: Tue, 15 Feb 2022 20:47:34 +0100 Subject: more modifiers and entities --- .../resources/assets/notenoughupdates/dream.json | 29 ++++++++++++++++++++-- src/main/resources/mixins.notenoughupdates.json | 3 +++ 2 files changed, 30 insertions(+), 2 deletions(-) (limited to 'src/main/resources') diff --git a/src/main/resources/assets/notenoughupdates/dream.json b/src/main/resources/assets/notenoughupdates/dream.json index 3b83e14c..6f27e89e 100644 --- a/src/main/resources/assets/notenoughupdates/dream.json +++ b/src/main/resources/assets/notenoughupdates/dream.json @@ -7,11 +7,36 @@ }, { "type": "riding", - "entity": "Chicken", + "entity": "ArmorStand", "modifiers": [ + { + "type": "age", + "baby": true + }, { "type": "riding", - "entity": "Squid" + "entity": "Zombie", + "modifiers": [ + { + "type": "equipment", + "hand": "BOW", + "feet": "DIAMOND_BOOTS" + }, + { + "type": "age", + "baby": true + }, + { + "type": "riding", + "entity": "Sheep", + "modifiers": [ + { + "type": "age", + "baby": true + } + ] + } + ] } ] }, diff --git a/src/main/resources/mixins.notenoughupdates.json b/src/main/resources/mixins.notenoughupdates.json index 71e10d46..a7018f32 100644 --- a/src/main/resources/mixins.notenoughupdates.json +++ b/src/main/resources/mixins.notenoughupdates.json @@ -3,15 +3,18 @@ "refmap": "mixins.notenoughupdates.refmap.json", "compatibilityLevel": "JAVA_8", "mixins": [ + "AccessorEntityAgeable", "MixinAbstractClientPlayer", "MixinContainer", "MixinEffectRenderer", "MixinEntity", "MixinEntityAgeable", + "AccessorEntityArmorStand", "MixinEntityHorse", "MixinEntityPlayer", "MixinEntityPlayerSP", "MixinEntityRenderer", + "MixinEntitySkeleton", "MixinGuiChest", "MixinGuiContainer", "MixinGuiIngame", -- cgit