Alpha Release: 0.9.0 (#849)
Signed-off-by: Pyritie <pyritie@gmail.com> Signed-off-by: TomPlop <tomdidome@gmail.com> Co-authored-by: Xikaro <os.valerievich@ya.ru> Co-authored-by: Nebby <78170922+Nebby1999@users.noreply.github.com> Co-authored-by: Redeix <brayden.j.m.ford@gmail.com> Co-authored-by: TomPlop <tomdidome@gmail.com> Co-authored-by: aidie8 <aidenvanzuilen@gmail.com> Co-authored-by: Xikaro <55663835+Xikaro@users.noreply.github.com> Co-authored-by: Zleub <debray.arnaud@gmail.com>
This commit is contained in:
parent
d344316e5a
commit
ec2e3cd3c4
2193 changed files with 104602 additions and 53195 deletions
|
|
@ -84,7 +84,8 @@ global.AE2_DISABLED_ITEMS = [
|
|||
'ae2:silicon',
|
||||
'ae2:sky_dust',
|
||||
'ae2:creative_energy_cell',
|
||||
'ae2:tiny_tnt'
|
||||
'ae2:tiny_tnt',
|
||||
'ae2:crystal_resonance_generator'
|
||||
];
|
||||
|
||||
// Glass Cable
|
||||
|
|
|
|||
17
kubejs/startup_scripts/ae2/materials.js
Normal file
17
kubejs/startup_scripts/ae2/materials.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// priority: 0
|
||||
|
||||
const registerAE2Materials = (event) => {
|
||||
event.create('tfg:fluix')
|
||||
.liquid()
|
||||
.gem(1)
|
||||
.iconSet(GTMaterialIconSet.CERTUS)
|
||||
.flags(
|
||||
GTMaterialFlags.NO_SMELTING,
|
||||
GTMaterialFlags.CRYSTALLIZABLE,
|
||||
GTMaterialFlags.DISABLE_DECOMPOSITION,
|
||||
GTMaterialFlags.FORCE_GENERATE_BLOCK
|
||||
)
|
||||
.components('1x silicon', '2x oxygen')
|
||||
.color(0x6D5BB6)
|
||||
.secondaryColor(0x1E1932)
|
||||
}
|
||||
17
kubejs/startup_scripts/ae2/tag_prefixes.js
Normal file
17
kubejs/startup_scripts/ae2/tag_prefixes.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// priority: 0
|
||||
|
||||
const registerAE2TagPrefixes = (event) => {
|
||||
const $AE_BLOCKS = Java.loadClass('appeng.core.definitions.AEBlocks');
|
||||
const $AE_ITEMS = Java.loadClass('appeng.core.definitions.AEItems');
|
||||
|
||||
const Fluix = GTCEuAPI.materialManager.getMaterial('tfg:fluix')
|
||||
|
||||
TagPrefix.block.setIgnored(Fluix, $AE_BLOCKS.FLUIX_BLOCK);
|
||||
TagPrefix.dust.setIgnored(Fluix, $AE_ITEMS.FLUIX_DUST);
|
||||
TagPrefix.gem.setIgnored(Fluix, $AE_ITEMS.FLUIX_CRYSTAL);
|
||||
;
|
||||
TagPrefix.dust.setIgnored(GTMaterials.CertusQuartz, $AE_ITEMS.CERTUS_QUARTZ_DUST);
|
||||
TagPrefix.gem.setIgnored(GTMaterials.CertusQuartz, $AE_ITEMS.CERTUS_QUARTZ_CRYSTAL);
|
||||
|
||||
TagPrefix.dust.setIgnored(GTMaterials.EnderPearl, $AE_ITEMS.ENDER_DUST);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue