-
-
Notifications
You must be signed in to change notification settings - Fork 35
Adding A Custom Entity Reward
Ryan Turk edited this page Feb 11, 2020
·
7 revisions
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.
| 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 |
{
"Entity_Reward":
{
"chance": 0,
"Entity":
[
{
"entity":{"id":"zombie", "CustomName":"Chance Cube Zombie","CustomNameVisible":1},
"delay":5
}
]
}
}
COMING SOON!