Skip to content

Instantly share code, notes, and snippets.

View SuperJedi224's full-sized avatar

Johnathan Waugh SuperJedi224

  • Somewhere and Somewhen
View GitHub Profile
/*
The following class is hereby released into the public domain under a CC0 public domain dedication.
To the greatest extent permitted by law, I hereby fully, permanently, irrevocably, and unconditionally
waive all copyright protection that may apply to this class.
*/
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.*;

Eagle Lord (CR 15/MR 6)

XP 51,200

Mythic variant giant eagle

NG Huge magical beast (good, mythic)

Init +17/-3ᴹ (dual initiative); Senses darkvision 60 ft., detect evil, low-light vision, true seeing, x-ray visionᴹ; Perception +35

Avatar of Zon-Kuthon (CR 30)

XP 9,830,400

LE Medium outsider (evil, extraplanar, lawful, kyton)

Init +10; Senses darvision 120 ft., see in darkness, true seeing; Perception +40

Aura unholy aura (DC 30)

package sj224.mods.silk;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
@SuperJedi224
SuperJedi224 / ModMain.java
Last active August 15, 2020 21:07
Source code of the configurable XP mod, available under a Creative Commons Attribution-Share Alike License.
package sj224.mods.xp;
import java.util.HashMap;
import java.util.Map;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.boss.EntityDragon;
import net.minecraft.entity.monster.EntitySlime;
import net.minecraft.entity.monster.EntityZombie;