чуточку г*внокода

главное признать свои ошибки
This commit is contained in:
FriendlyCube 2023-12-06 15:31:55 +02:00
parent 87c2bdc7b0
commit 34277157ae
8 changed files with 82 additions and 4 deletions

View file

@ -0,0 +1,9 @@
// priority: 0
const registerAE2Liquids = (event) => {
event.create('fluix')
.displayName('Liquid Fluix')
.thickTexture(0x57448d)
.bucketColor(0x46396d)
.noBlock()
};

View file

@ -0,0 +1,12 @@
// priority: 0
const registerAE2Items = (event) => {
event.create('rods/certus_quartz')
.displayName('Certus Quartz Rod')
.maxStackSize(32)
.texture("kubejs:item/certus_quartz_rod");
event.create('rods/nether_quartz')
.displayName('Nether Quartz Rod')
.maxStackSize(32)
.texture("kubejs:item/nether_quartz_rod")
};