diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/notenoughupdates/dream.json | 29 | ||||
-rw-r--r-- | src/main/resources/mixins.notenoughupdates.json | 3 |
2 files changed, 30 insertions, 2 deletions
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", |