Adding A Custom Entity Reward - TheTurkeyDev/ChanceCubes GitHub Wiki
Before you add an entity reward, you need to have the basic reward setup. If you have not done that already, you need to head here to set up the base for the reward.
Fields:
Field Name | Type | Default | Field Description |
---|---|---|---|
entity | NBT | Inset nbt data inside this tag. This NBT data follows all normal minecraft nbt rules | |
delay | Integer | 0 | The delay for the entity to wait after the Chance Cube is broken before being spawned. |
copies | Integer | 0 | The number of "copies" of this entity to spawn |
Example:
{
"Entity_Reward":
{
"chance": 0,
"Entity":
[
{
"entity":{"id":"zombie", "CustomName":"Chance Cube Zombie","CustomNameVisible":1},
"delay":5
}
]
}
}
Config Tutorial:
COMING SOON!