anvilcraft4/kubejs/Recipes.hx
LordMZTE b3791ea05f
Some checks failed
continuous-integration/drone/push Build is failing
feat: add kubejs script (WIP)
2022-06-29 22:14:03 +02:00

21 lines
524 B
Haxe

import kubejs.events.server.RecipesEvent;
class Recipes {
public static function onEvent(event:RecipesEvent) {
event.shaped(
"flight_rings:t_basic_ring_treasure",
[
"S", "W", "S",
"W", "R", "W",
"F", "W", "F",
],
{
S: "terramine:mana_crystal",
W: "minecraft:feather",
R: "botania:pixie_ring",
F: "create:encased_fan",
}
);
}
}