Make the hay bale fill 9 hearts instead of 1

This commit is contained in:
Sollace 2023-08-27 19:34:17 +01:00
parent c44a189bee
commit 7c62e56d1d
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB
6 changed files with 21 additions and 3 deletions

View file

@ -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))

View file

@ -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();

View file

@ -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 }
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
{ "id": "farmersdelight:horse_feed", "required": false }
]
}

View file

@ -9,7 +9,6 @@
"minecraft:peony",
"minecraft:dandelion",
"minecraft:tall_grass",
"minecraft:hay_block",
"minecraft:wheat",
"#c:foraging/edibles"
]

View file

@ -0,0 +1,7 @@
{
"replace": false,
"values": [
"minecraft:hay_block",
"#c:foraging/edibles_filling"
]
}