diff --git a/src/main/resources/assets/terraoriginum/lang/en_us.json b/src/main/resources/assets/terraoriginum/lang/en_us.json index 341d465..622649f 100644 --- a/src/main/resources/assets/terraoriginum/lang/en_us.json +++ b/src/main/resources/assets/terraoriginum/lang/en_us.json @@ -17,6 +17,9 @@ "death.attack.boiling.player": "%1$s boiled up whilst trying to fight off %2$s", "enchantment.terraoriginum.sun_protection": "Sun Protection", "item.terraoriginum.ghostly_helmet": "Ghostly Hood", + "item.terraoriginum.ghostly_chestplate": "Ghostly Robe", + "item.terraoriginum.ghostly_leggings": "Ghostly Pants", + "item.terraoriginum.ghostly_boots": "Ghostly Socks", //-----Immortal Human-----// "origin.terraoriginum.immortal_human.name": "Immortal Human", diff --git a/src/main/resources/assets/terraoriginum/models/item/ghostly_boots.json b/src/main/resources/assets/terraoriginum/models/item/ghostly_boots.json new file mode 100644 index 0000000..aa74e93 --- /dev/null +++ b/src/main/resources/assets/terraoriginum/models/item/ghostly_boots.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "terraoriginum:item/ghostly_boots" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/terraoriginum/models/item/ghostly_chestplate.json b/src/main/resources/assets/terraoriginum/models/item/ghostly_chestplate.json new file mode 100644 index 0000000..16f0829 --- /dev/null +++ b/src/main/resources/assets/terraoriginum/models/item/ghostly_chestplate.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "terraoriginum:item/ghostly_chestplate" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/terraoriginum/models/item/ghostly_leggings.json b/src/main/resources/assets/terraoriginum/models/item/ghostly_leggings.json new file mode 100644 index 0000000..83dd1be --- /dev/null +++ b/src/main/resources/assets/terraoriginum/models/item/ghostly_leggings.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "terraoriginum:item/ghostly_leggings" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/terraoriginum/textures/item/ghostly_boots.png b/src/main/resources/assets/terraoriginum/textures/item/ghostly_boots.png new file mode 100644 index 0000000..2ee3388 Binary files /dev/null and b/src/main/resources/assets/terraoriginum/textures/item/ghostly_boots.png differ diff --git a/src/main/resources/assets/terraoriginum/textures/item/ghostly_chestplate.png b/src/main/resources/assets/terraoriginum/textures/item/ghostly_chestplate.png new file mode 100644 index 0000000..281b7fb Binary files /dev/null and b/src/main/resources/assets/terraoriginum/textures/item/ghostly_chestplate.png differ diff --git a/src/main/resources/assets/terraoriginum/textures/item/ghostly_leggings.png b/src/main/resources/assets/terraoriginum/textures/item/ghostly_leggings.png new file mode 100644 index 0000000..db0c8dc Binary files /dev/null and b/src/main/resources/assets/terraoriginum/textures/item/ghostly_leggings.png differ