Skip to content

[1.16.5_11.3.1] Textured Golem

Sky James edited this page May 5, 2023 · 1 revision

NBT Values

The Textured Golem can only be spawned and textured using commands. There are two important NBT keys available:

  • Texture takes a namespaced texture including the .png extension
  • Vines (Optional) takes a decimal version of a hex color. Use any hex to decimal calculator to get this value.

Use the /summon command to spawn a golem while defining these values in the NBT tag.

Example Commands

Here's an example of these commands in action:

The left-most golem has the texture of a bamboo stalk with no vines. Here is the command that was used to create it:

/summon golems:golem_textured ~ ~ ~ {Texture:"minecraft:textures/block/bamboo_stalk.png"}

The middle golem has the texture of a bees nest, filled with honey, with green vines. Here is the command that was used to create it:

/summon golems:golem_textured ~ ~ ~ {Texture:"minecraft:textures/block/bee_nest_front_honey.png",Vines:8626266}

The right-most golem has the texture of soul sand with red vines. Here is the command that was used to create it:

/summon golems:golem_textured ~ ~ ~ {Texture:"minecraft:textures/block/soul_sand.png",Vines:11543845}

Remember, the texture defined in the NBT must be in "quotation marks" and must include a mod id prefix or minecraft.

Reference

For easy reference, here are some decimal colors commonly used for vines:

  • green = 8626266
  • blue = 23157
  • dark blue = 2070638
  • red = 11543845
  • aqua = 2070638
  • brown = 5127460
  • purple = 5121902
Clone this wiki locally