Skip to content

Commit

Permalink
add golden fleece item
Browse files Browse the repository at this point in the history
  • Loading branch information
LocusAzzurro committed Jan 20, 2022
1 parent 677cf05 commit f6a1e11
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package org.mineplugin.locusazzurro.icaruswings.items;

import net.minecraft.item.Item;
import org.mineplugin.locusazzurro.icaruswings.data.ModGroup;

public class GoldenFleece extends Item{

public GoldenFleece() {
super(new Item.Properties().tab(ModGroup.itemGroup));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public class ItemRegistry {
public static final RegistryObject<Item> wheatGrains = ITEMS.register("wheat_grains", WheatGrains::new);
public static final RegistryObject<Item> wheatString = ITEMS.register("wheat_string", WheatString::new);
public static final RegistryObject<Item> goldenString = ITEMS.register("golden_string", GoldenString::new);
public static final RegistryObject<Item> goldenFleece = ITEMS.register("golden_fleece", GoldenString::new);

public static final RegistryObject<Item> linen = ITEMS.register("linen", Linen::new);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,12 @@

"block.locusazzurro_icaruswings.melon": "Melon",

"item.locusazzurro_icaruswings.greek_fire_bucket": "Greek Fire Bucket",

"item.locusazzurro_icaruswings.wheat_grains": "Wheat Grains",
"item.locusazzurro_icaruswings.wheat_string": "Wheat String",
"item.locusazzurro_icaruswings.golden_string": "Golden String",
"item.locusazzurro_icaruswings.golden_fleece": "Golden Fleece",
"item.locusazzurro_icaruswings.linen": "Linen",

"item.locusazzurro_icaruswings.herbal_crown": "Leaf Wreath",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,12 @@

"block.locusazzurro_icaruswings.melon": "西瓜",

"item.locusazzurro_icaruswings.greek_fire_bucket": "Greek Fire Bucket",

"item.locusazzurro_icaruswings.wheat_grains": "小麦碎粒",
"item.locusazzurro_icaruswings.wheat_string": "小麦丝线",
"item.locusazzurro_icaruswings.golden_string": "金丝线",
"item.locusazzurro_icaruswings.golden_fleece": "Golden Fleece",
"item.locusazzurro_icaruswings.linen": "亚麻布",

"item.locusazzurro_icaruswings.herbal_crown": "月桂冠",
Expand Down

0 comments on commit f6a1e11

Please sign in to comment.