Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Elytra
- val string = <minecraft:string>;
- val paper = <minecraft:paper>;
- val feather = <minecraft:feather>;
- val diamond = <minecraft:diamond>;
- val leather = <minecraft:leather>;
- val elytra = <minecraft:elytra>;
- recipes.addShaped("EasyElytra", elytra, [[string, diamond, string],[paper, leather, paper],[feather, null, feather]]);
- //Poison Arrow
- val arrow = <minecraft:arrow>;
- val pufferfish = <minecraft:fish:3>;
- val poison_arrow = <minecraft:tipped_arrow>.withTag({Potion: "minecraft:strong_poison"});
- recipes.addShaped("EasyPoisonArrow", poison_arrow * 8, [[arrow, arrow, arrow],[arrow, pufferfish, arrow],[arrow, arrow, arrow]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement