mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Change the horse feed creative tab into a "Foraging" tab and make more blocks foragable
This commit is contained in:
parent
17c194dc61
commit
80cb31222b
8 changed files with 27 additions and 15 deletions
|
@ -4,23 +4,15 @@ import java.util.stream.Stream;
|
|||
|
||||
import com.minelittlepony.unicopia.item.ChameleonItem;
|
||||
import com.minelittlepony.unicopia.item.UItems;
|
||||
import com.minelittlepony.unicopia.item.toxin.Toxic;
|
||||
import com.minelittlepony.unicopia.item.toxin.ToxicHolder;
|
||||
|
||||
import net.minecraft.item.*;
|
||||
import net.minecraft.registry.Registries;
|
||||
import net.minecraft.registry.RegistryKey;
|
||||
|
||||
public interface UItemGroups {
|
||||
RegistryKey<ItemGroup> ALL_ITEMS = ItemGroupRegistry.createDynamic("items", UItems.EMPTY_JAR::getDefaultStack, () -> {
|
||||
RegistryKey<ItemGroup> ALL_ITEMS = ItemGroupRegistry.createDynamic("items", UItems.CRYSTAL_HEART::getDefaultStack, () -> {
|
||||
return Stream.concat(Stream.of(Items.APPLE), ItemGroupRegistry.ITEMS.stream()
|
||||
.filter(item -> !(item instanceof ChameleonItem) || ((ChameleonItem)item).isFullyDisguised()));
|
||||
});
|
||||
RegistryKey<ItemGroup> HORSE_FEED = ItemGroupRegistry.createDynamic("horsefeed", UItems.ZAP_APPLE::getDefaultStack, () -> {
|
||||
return Registries.ITEM.stream()
|
||||
.filter(item -> ((ToxicHolder)item).getToxic(item.getDefaultStack()) != Toxic.EMPTY);
|
||||
});
|
||||
|
||||
RegistryKey<ItemGroup> FORAGING_ITEMS = ItemGroupRegistry.createGroupFromTag("foraging", Items.HAY_BLOCK::getDefaultStack);
|
||||
RegistryKey<ItemGroup> EARTH_PONY_ITEMS = ItemGroupRegistry.createGroupFromTag("earth_pony", UItems.EARTH_BADGE::getDefaultStack);
|
||||
RegistryKey<ItemGroup> UNICORN_ITEMS = ItemGroupRegistry.createGroupFromTag("unicorn", UItems.UNICORN_BADGE::getDefaultStack);
|
||||
RegistryKey<ItemGroup> PEGASUS_ITEMS = ItemGroupRegistry.createGroupFromTag("pegasus", UItems.PEGASUS_BADGE::getDefaultStack);
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"ability.unicopia.too_low": "I need to get higher up",
|
||||
"ability.unicopia.clear_skies": "The skies already look pretty clear",
|
||||
|
||||
"itemGroup.unicopia.items": "Unicopia - Misc.",
|
||||
"itemGroup.unicopia.horsefeed": "Unicopia - Horse Feed",
|
||||
"itemGroup.unicopia.items": "Unicopia",
|
||||
"itemGroup.unicopia.foraging": "Unicopia - Foraging",
|
||||
"itemGroup.unicopia.earth_pony": "Unicopia - Ponyville",
|
||||
"itemGroup.unicopia.unicorn": "Unicopia - Canterlot",
|
||||
"itemGroup.unicopia.pegasus": "Unicopia - Cloudsdale",
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"replace": false,
|
||||
"values": [
|
||||
{ "id": "#c:mushrooms", "required": false },
|
||||
{ "id": "#c:saplings", "required": false }
|
||||
{ "id": "#c:saplings", "required": false },
|
||||
{ "id": "farmersdelight:sandy_shrub", "required": false }
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
"minecraft:dandelion",
|
||||
"minecraft:tall_grass",
|
||||
"minecraft:wheat",
|
||||
"minecraft:dead_bush",
|
||||
"minecraft:pink_petals",
|
||||
"#c:foraging/edibles"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:hay_block",
|
||||
"#minecraft:leaves",
|
||||
"#c:foraging/edibles_filling",
|
||||
{ "id": "farmersdelight:rice_bale", "required": false }
|
||||
]
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:rose_bush"
|
||||
"minecraft:rose_bush",
|
||||
"#minecraft:saplings"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:dead_bush"
|
||||
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"#unicopia:food_types/forage_dangerous",
|
||||
"#unicopia:food_types/forage_edible_filling",
|
||||
"#unicopia:food_types/forage_edible",
|
||||
"#unicopia:food_types/forage_nauseating",
|
||||
"#unicopia:food_types/forage_prickly",
|
||||
"#unicopia:food_types/forage_radioactive",
|
||||
"#unicopia:food_types/forage_risky",
|
||||
"#unicopia:food_types/forage_severely_nauseating",
|
||||
"#unicopia:food_types/forage_severely_prickly",
|
||||
"#unicopia:food_types/forage_strengthening"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue