58 lines
2.7 KiB
JavaScript
58 lines
2.7 KiB
JavaScript
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
|
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|
|
|
|
StartupEvents.registry('item', allthemods => {
|
|
allthemods.create('allthemodium_drill')
|
|
.texture('kubejs:item/allthemodium_drill')
|
|
.maxStackSize(64)
|
|
.displayName('Allthemodium Drill');
|
|
allthemods.create('allthemodium_drill_head')
|
|
.texture('kubejs:item/allthemodium_drill_head')
|
|
.maxStackSize(64)
|
|
.displayName('Allthemodium Drill Head');
|
|
allthemods.create('allthemodium_curved_plate')
|
|
.texture('kubejs:item/allthemodium_curved_plate')
|
|
.maxStackSize(64)
|
|
.displayName('Allthemodium Curved Plate');
|
|
allthemods.create('allthemodium_bolt')
|
|
.texture('kubejs:item/allthemodium_bolt')
|
|
.maxStackSize(64)
|
|
.displayName('Allthemodium Bolt');
|
|
|
|
allthemods.create('vibranium_drill')
|
|
.texture('kubejs:item/vibranium_drill')
|
|
.maxStackSize(64)
|
|
.displayName('Vibranium Drill');
|
|
allthemods.create('vibranium_drill_head')
|
|
.texture('kubejs:item/vibranium_drill_head')
|
|
.maxStackSize(64)
|
|
.displayName('Vibranium Drill Head');
|
|
allthemods.create('vibranium_curved_plate')
|
|
.texture('kubejs:item/vibranium_curved_plate')
|
|
.maxStackSize(64)
|
|
.displayName('Vibranium Curved Plate');
|
|
allthemods.create('vibranium_bolt')
|
|
.texture('kubejs:item/vibranium_bolt')
|
|
.maxStackSize(64)
|
|
.displayName('Vibranium Bolt');
|
|
|
|
allthemods.create('unobtainium_drill')
|
|
.texture('kubejs:item/unobtainium_drill')
|
|
.maxStackSize(64)
|
|
.displayName('Unobtainium Drill');
|
|
allthemods.create('unobtainium_drill_head')
|
|
.texture('kubejs:item/unobtainium_drill_head')
|
|
.maxStackSize(64)
|
|
.displayName('Unobtainium Drill Head');
|
|
allthemods.create('unobtainium_curved_plate')
|
|
.texture('kubejs:item/unobtainium_curved_plate')
|
|
.maxStackSize(64)
|
|
.displayName('Unobtainium Curved Plate');
|
|
allthemods.create('unobtainium_bolt')
|
|
.texture('kubejs:item/unobtainium_bolt')
|
|
.maxStackSize(64)
|
|
.displayName('Unobtainium Bolt');
|
|
})
|
|
|
|
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
|
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
|