From ef5f1b8a2202be5d6c1de8cf19260e7cbf93b757 Mon Sep 17 00:00:00 2001 From: nea Date: Sun, 13 Feb 2022 01:25:19 +0100 Subject: entity renderer (somewhat functionaL) --- .../resources/assets/notenoughupdates/dream.json | 24 +++++++++++++++++++++ .../textures/gui/entity_viewer.png | Bin 0 -> 8085 bytes 2 files changed, 24 insertions(+) create mode 100644 src/main/resources/assets/notenoughupdates/dream.json create mode 100644 src/main/resources/assets/notenoughupdates/textures/gui/entity_viewer.png (limited to 'src/main/resources/assets/notenoughupdates') diff --git a/src/main/resources/assets/notenoughupdates/dream.json b/src/main/resources/assets/notenoughupdates/dream.json new file mode 100644 index 00000000..3b83e14c --- /dev/null +++ b/src/main/resources/assets/notenoughupdates/dream.json @@ -0,0 +1,24 @@ +{ + "entity": "Player", + "modifiers": [ + { + "type": "playerdata", + "skin": "notenoughupdates:dreamskin.png" + }, + { + "type": "riding", + "entity": "Chicken", + "modifiers": [ + { + "type": "riding", + "entity": "Squid" + } + ] + }, + { + "type": "equipment", + "hand": "DIAMOND_SWORD", + "feet": "DIAMOND_BOOTS" + } + ] +} diff --git a/src/main/resources/assets/notenoughupdates/textures/gui/entity_viewer.png b/src/main/resources/assets/notenoughupdates/textures/gui/entity_viewer.png new file mode 100644 index 00000000..18085170 Binary files /dev/null and b/src/main/resources/assets/notenoughupdates/textures/gui/entity_viewer.png differ -- cgit