Skip to content

Commit

Permalink
Popom jelly added
Browse files Browse the repository at this point in the history
  • Loading branch information
MrXBlade committed Nov 10, 2024
1 parent 3b9fbbe commit 4992930
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ public class ParadiseLostItemGroups {
entries.add(GOLDEN_AMBER);
entries.add(FLAX_THREAD);
entries.add(FLAXWEAVE);
entries.add(POPOM_JELLY);
}));
public static final RegistryKey<ItemGroup> PARADISE_FOOD = create("food", FabricItemGroup.builder()
.icon(() -> new ItemStack(AMADRYS_NOODLES))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ private static Settings resource() {
public static final Item FLAXWEAVE = add("flaxweave", new Item(resource()));
public static final Item SWEDROOT_PULP = add("swedroot_pulp", new Item(resource()), compostable30);

public static final Item POPOM_JELLY = add("popom_jelly", new Item(resource()), compostable30);


private static Settings tool() {
return new Settings();
Expand Down Expand Up @@ -197,7 +199,6 @@ private static Settings food(FoodComponent foodComponent) {
public static final MoaEggItem MOA_EGG = add("moa_egg", new MoaEggItem(new Settings().maxCount(1)));
public static final BlockItem NITRA_BUNCH = add(ParadiseLostBlocks.NITRA_BUNCH, fuel(3200));


public static final AurelBucketItem AUREL_BUCKET = add("aurel_bucket", new AurelBucketItem(new Settings().maxCount(16)), fuel(200), emptyBucketBehavior);

private static final Settings aurelBucket = new Settings().maxCount(1).recipeRemainder(AUREL_BUCKET);
Expand Down Expand Up @@ -442,7 +443,7 @@ private static Settings food(FoodComponent foodComponent) {

// beds

// Redstone items, buttons n pressureplates etc.
// Redstone items, buttons n pressure plates etc.
public static final BlockItem FLOESTONE_BUTTON = add(ParadiseLostBlocks.FLOESTONE_BUTTON);
public static final BlockItem FLOESTONE_PRESSURE_PLATE = add(ParadiseLostBlocks.FLOESTONE_PRESSURE_PLATE);

Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/assets/paradise_lost/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,8 @@
"block.paradise_lost.nitra_bunch": "Nitra Bunch",
"block.paradise_lost.levita_rail": "Levita Rail",


"container.paradise_lost.moa": "Moa",


"entity.paradise_lost.floating_block": "Floating Block",
"entity.paradise_lost.moa": "Moa",
"entity.paradise_lost.envoy": "Envoy",
Expand All @@ -254,6 +252,7 @@
"item.paradise_lost.flax_thread" : "Flax Thread",
"item.paradise_lost.flaxweave" : "Flaxweave",
"item.paradise_lost.swedroot_pulp": "Swedroot Pulp",
"item.paradise_lost.popom_jelly": "Popom Jelly",

"item.paradise_lost.olvite_shovel": "Olvite Shovel",
"item.paradise_lost.olvite_pickaxe": "Olvite Pickaxe",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "paradise_lost:item/popom_jelly"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": {
"item": "paradise_lost:popom_jelly"
}
},
"pattern": [
"###",
"###",
"###"
],
"result": {
"count": 1,
"id": "minecraft:slime_block"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"#": {
"item": "paradise_lost:popom_jelly"
},
"P": {
"item": "minecraft:piston"
}
},
"pattern": [
"#",
"P"
],
"result": {
"count": 1,
"id": "minecraft:sticky_piston"
}
}

0 comments on commit 4992930

Please sign in to comment.