mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Make the hay bale fill 9 hearts instead of 1
This commit is contained in:
parent
c44a189bee
commit
7c62e56d1d
6 changed files with 21 additions and 3 deletions
|
@ -25,6 +25,12 @@ public interface Toxics {
|
|||
.with(Race.CHANGELING, of(FAIR, LOVE_SICKNESS))
|
||||
);
|
||||
|
||||
Toxic FORAGE_EDIBLE_FILLING = register("forage_edible_filling", new Toxic.Builder(Ailment.INNERT)
|
||||
.food(UFoodComponents.RANDOM_FOLIAGE_FILLING)
|
||||
.with(Race.HUMAN, of(LETHAL, FOOD_POISONING))
|
||||
.with(Race.CHANGELING, of(FAIR, LOVE_SICKNESS))
|
||||
);
|
||||
|
||||
Toxic FORAGE_RISKY = register("forage_risky", new Toxic.Builder(of(FAIR, WEAK_NAUSEA.withChance(20)))
|
||||
.food(UFoodComponents.RANDOM_FOLIAGE)
|
||||
.with(Race.HUMAN, of(LETHAL, FOOD_POISONING))
|
||||
|
|
|
@ -24,6 +24,7 @@ public interface UFoodComponents {
|
|||
FoodComponent BURNED_JUICE = builder(3, 1).build();
|
||||
|
||||
FoodComponent RANDOM_FOLIAGE = builder(2, 1).build();
|
||||
FoodComponent RANDOM_FOLIAGE_FILLING = builder(18, 1).build();
|
||||
FoodComponent INSECTS = builder(1, 0).alwaysEdible().build();
|
||||
|
||||
FoodComponent CEREAL = builder(9, 0.8F).build();
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"replace": false,
|
||||
"values": [
|
||||
{ "id": "#c:mushrooms", "required": false },
|
||||
{ "id": "#c:saplings", "required": false },
|
||||
{ "id": "farmersdelight:horse_feed", "required": false }
|
||||
{ "id": "#c:saplings", "required": false }
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
{ "id": "farmersdelight:horse_feed", "required": false }
|
||||
]
|
||||
}
|
|
@ -9,7 +9,6 @@
|
|||
"minecraft:peony",
|
||||
"minecraft:dandelion",
|
||||
"minecraft:tall_grass",
|
||||
"minecraft:hay_block",
|
||||
"minecraft:wheat",
|
||||
"#c:foraging/edibles"
|
||||
]
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:hay_block",
|
||||
"#c:foraging/edibles_filling"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue