Skip to content

Instantly share code, notes, and snippets.

@EILFYT
Created January 11, 2021 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EILFYT/5d8ef1d239e97f5ce07933326a012c7e to your computer and use it in GitHub Desktop.
Save EILFYT/5d8ef1d239e97f5ce07933326a012c7e to your computer and use it in GitHub Desktop.
package com.eilfyt.starwarsinminecraft.items;
import com.eilfyt.starwarsinminecraft.StarWarsInMinecraft;
import com.eilfyt.starwarsinminecraft.util.RegistryHandler;
import net.minecraft.item.*;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
public class DragonBow extends BowItem {
public DragonBow() {
super(new Item.Properties().group(StarWarsInMinecraft.TAB)
.maxStackSize(1)
.defaultMaxDamage(25)
.maxDamage(2147)
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment