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]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Iron golems now drop iron nuggets (previously they didn't drop any iron at all)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- *Actually* removed some leftover Tinkers' Contruct functional blocks
|
- *Actually* removed some leftover Tinkers' Contruct functional blocks
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,48 @@
|
||||||
{
|
{
|
||||||
"type": "minecraft:entity",
|
"type": "minecraft:entity",
|
||||||
"pools": [{
|
"pools": [
|
||||||
"bonus_rolls": 0,
|
{
|
||||||
"entries": [{
|
"bonus_rolls": 0.0,
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
"type": "minecraft:item",
|
"type": "minecraft:item",
|
||||||
"functions": [{
|
"functions": [
|
||||||
|
{
|
||||||
"add": false,
|
"add": false,
|
||||||
"count": {"type": "minecraft:uniform","max":2,"min":0},
|
"count": {
|
||||||
|
"type": "minecraft:uniform",
|
||||||
|
"max": 2.0,
|
||||||
|
"min": 0.0
|
||||||
|
},
|
||||||
"function": "minecraft:set_count"
|
"function": "minecraft:set_count"
|
||||||
}],
|
}
|
||||||
|
],
|
||||||
"name": "minecraft:poppy"
|
"name": "minecraft:poppy"
|
||||||
}],
|
}
|
||||||
"rolls": 1
|
],
|
||||||
}],
|
"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"
|
"random_sequence": "minecraft:entities/iron_golem"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue