Make iron golems drop nuggets
This commit is contained in:
parent
5553c01d97
commit
1b23679ae4
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
|
||||
- Iron golems now drop iron nuggets (previously they didn't drop any iron at all)
|
||||
|
||||
### Fixed
|
||||
|
||||
- *Actually* removed some leftover Tinkers' Contruct functional blocks
|
||||
|
|
|
|||
|
|
@ -1,17 +1,48 @@
|
|||
{
|
||||
"type": "minecraft:entity",
|
||||
"pools": [{
|
||||
"bonus_rolls": 0,
|
||||
"entries": [{
|
||||
"type": "minecraft:item",
|
||||
"functions": [{
|
||||
"add": false,
|
||||
"count": {"type": "minecraft:uniform","max":2,"min":0},
|
||||
"function": "minecraft:set_count"
|
||||
}],
|
||||
"name": "minecraft:poppy"
|
||||
}],
|
||||
"rolls": 1
|
||||
}],
|
||||
"random_sequence": "minecraft:entities/iron_golem"
|
||||
"type": "minecraft:entity",
|
||||
"pools": [
|
||||
{
|
||||
"bonus_rolls": 0.0,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"functions": [
|
||||
{
|
||||
"add": false,
|
||||
"count": {
|
||||
"type": "minecraft:uniform",
|
||||
"max": 2.0,
|
||||
"min": 0.0
|
||||
},
|
||||
"function": "minecraft:set_count"
|
||||
}
|
||||
],
|
||||
"name": "minecraft:poppy"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
},
|
||||
{
|
||||
"bonus_rolls": 0.0,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"functions": [
|
||||
{
|
||||
"add": false,
|
||||
"count": {
|
||||
"type": "minecraft:uniform",
|
||||
"max": 5.0,
|
||||
"min": 3.0
|
||||
},
|
||||
"function": "minecraft:set_count"
|
||||
}
|
||||
],
|
||||
"name": "minecraft:iron_nugget"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
}
|
||||
],
|
||||
"random_sequence": "minecraft:entities/iron_golem"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue