Wither Config allows you to adjust the Wither's stats and behavior for a tailored boss experience.
at 1.0 22 lines 1.8 kB view raw
1package dev.redstudio.witherconfig; 2 3import net.minecraftforge.fml.common.Mod; 4 5import static dev.redstudio.witherconfig.utils.ModReference.ID; 6import static dev.redstudio.witherconfig.utils.ModReference.NAME; 7import static dev.redstudio.witherconfig.utils.ModReference.VERSION; 8 9// /$$ /$$ /$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$ 10// | $$ /$ | $$|__/ | $$ | $$ /$$__ $$ /$$__ $$|__/ 11// | $$ /$$$| $$ /$$ /$$$$$$ | $$$$$$$ /$$$$$$ /$$$$$$ | $$ \__/ /$$$$$$ /$$$$$$$ | $$ \__/ /$$ /$$$$$$ 12// | $$/$$ $$ $$| $$|_ $$_/ | $$__ $$ /$$__ $$ /$$__ $$ | $$ /$$__ $$| $$__ $$| $$$$ | $$ /$$__ $$ 13// | $$$$_ $$$$| $$ | $$ | $$ \ $$| $$$$$$$$| $$ \__/ | $$ | $$ \ $$| $$ \ $$| $$_/ | $$| $$ \ $$ 14// | $$$/ \ $$$| $$ | $$ /$$| $$ | $$| $$_____/| $$ | $$ $$| $$ | $$| $$ | $$| $$ | $$| $$ | $$ 15// | $$/ \ $$| $$ | $$$$/| $$ | $$| $$$$$$$| $$ | $$$$$$/| $$$$$$/| $$ | $$| $$ | $$| $$$$$$$ 16// |__/ \__/|__/ \___/ |__/ |__/ \_______/|__/ \______/ \______/ |__/ |__/|__/ |__/ \____ $$ 17// /$$ \ $$ 18// | $$$$$$/ 19// \______/ 20@Mod(modid = ID, name = NAME, version = VERSION, updateJSON = "https://raw.githubusercontent.com/Desoroxxx/Wither-Config/main/update.json") 21public final class WitherConfig { 22}