fixed a crash when tping to the moon lol
This commit is contained in:
parent
c74339adb7
commit
187e5a2f5f
23 changed files with 2666 additions and 2797 deletions
|
|
@ -68,9 +68,9 @@ const registerAdAstraBlockTags = (event) => {
|
|||
})
|
||||
|
||||
// Moon
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfg:raw_anorthosite')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfg:hardened_anorthosite')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfg:raw_basanite')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfg:rock/raw_anorthosite')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfg:rock/hardened_anorthosite')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfg:rock/raw_basanite')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'ad_astra:moon_sand')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfc:sand/black')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfc:sand/white')
|
||||
|
|
@ -81,9 +81,9 @@ const registerAdAstraBlockTags = (event) => {
|
|||
event.add('minecraft:rabbits_spawnable_on', 'tfc:rock/gravel/gabbro')
|
||||
event.add('minecraft:rabbits_spawnable_on', 'tfc:rock/gravel/basalt')
|
||||
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfg:raw_basanite')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfg:raw_anorthosite')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfg:hardened_anorthosite')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/raw_basanite')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/raw_anorthosite')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_anorthosite')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/basalt')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/basalt')
|
||||
event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/gabbro')
|
||||
|
|
|
|||
|
|
@ -20,15 +20,15 @@ function registerTFGCollapseRecipes(event) {
|
|||
// #endregion Nether
|
||||
|
||||
// #region Space
|
||||
event.recipes.tfc.collapse('ad_astra:moon_cobblestone', 'tfg:raw_anorthosite')
|
||||
event.recipes.tfc.collapse('ad_astra:moon_cobblestone', 'tfg:hardened_anorthosite')
|
||||
event.recipes.tfc.collapse('tfg:raw_basanite', 'tfg:raw_basanite')
|
||||
event.recipes.tfc.collapse('ad_astra:moon_cobblestone', 'tfg:rock/raw_anorthosite')
|
||||
event.recipes.tfc.collapse('ad_astra:moon_cobblestone', 'tfg:rock/hardened_anorthosite')
|
||||
event.recipes.tfc.collapse('tfg:raw_basanite', 'tfg:rock/raw_basanite')
|
||||
|
||||
event.recipes.tfc.landslide('ad_astra:moon_cobblestone', 'ad_astra:moon_cobblestone')
|
||||
event.recipes.tfc.landslide('ad_astra:moon_sand', 'ad_astra:moon_sand')
|
||||
|
||||
event.recipes.tfc.collapse('ad_astra:mars_cobblestone', 'tfg:raw_syenite')
|
||||
event.recipes.tfc.collapse('ad_astra:mars_cobblestone', 'tfg:hardened_syenite')
|
||||
event.recipes.tfc.collapse('ad_astra:mars_cobblestone', 'tfg:rock/raw_syenite')
|
||||
event.recipes.tfc.collapse('ad_astra:mars_cobblestone', 'tfg:rock/hardened_syenite')
|
||||
|
||||
event.recipes.tfc.landslide('ad_astra:mars_cobblestone', 'ad_astra:mars_cobblestone')
|
||||
event.recipes.tfc.landslide('ad_astra:mars_sand', 'ad_astra:mars_sand')
|
||||
|
|
|
|||
|
|
@ -114,8 +114,8 @@ function registerTFGRockRecipes(event) {
|
|||
{ raw: 'minecraft:blackstone', hammered: 'tfc:sand/black' },
|
||||
{ raw: 'beneath:crackrack', hammered: 'tfc:sand/pink' },
|
||||
{ raw: 'minecraft:dripstone_block', hammered: 'tfc:sand/brown' },
|
||||
{ raw: 'tfg:raw_anorthosite', hammered: 'ad_astra:moon_cobblestone' },
|
||||
{ raw: 'tfg:hardened_anorthosite', hammered: 'ad_astra:moon_cobblestone' },
|
||||
{ raw: 'tfg:rock/raw_anorthosite', hammered: 'ad_astra:moon_cobblestone' },
|
||||
{ raw: 'tfg:rock/hardened_anorthosite', hammered: 'ad_astra:moon_cobblestone' },
|
||||
{ raw: 'ad_astra:moon_cobblestone', hammered: 'tfc:sand/white' }
|
||||
]
|
||||
|
||||
|
|
@ -262,20 +262,26 @@ function registerTFGRockRecipes(event) {
|
|||
.EUt(7)
|
||||
})
|
||||
|
||||
event.recipes.gtceu.rock_breaker('tfg:raw_anorthosite')
|
||||
.notConsumable('tfg:raw_anorthosite')
|
||||
.itemOutputs('tfg:raw_anorthosite')
|
||||
event.recipes.gtceu.rock_breaker('tfg:anorthosite')
|
||||
.notConsumable('tfg:rock/raw_anorthosite')
|
||||
.itemOutputs('tfg:rock/raw_anorthosite')
|
||||
.duration(16)
|
||||
.EUt(7)
|
||||
.dimension('ad_astra:moon')
|
||||
|
||||
event.recipes.gtceu.rock_breaker('tfg:raw_basanite')
|
||||
.notConsumable('tfg:raw_basanite')
|
||||
.itemOutputs('tfg:raw_basanite')
|
||||
event.recipes.gtceu.rock_breaker('tfg:basanite')
|
||||
.notConsumable('tfg:rock/raw_basanite')
|
||||
.itemOutputs('tfg:rock/raw_basanite')
|
||||
.duration(16)
|
||||
.EUt(7)
|
||||
.dimension('ad_astra:moon')
|
||||
|
||||
event.recipes.gtceu.rock_breaker('tfg:syenite')
|
||||
.notConsumable('tfg:rock/raw_syenite')
|
||||
.itemOutputs('tfg:rock/raw_syenite')
|
||||
.duration(16)
|
||||
.EUt(7)
|
||||
.dimension('ad_astra:mars')
|
||||
|
||||
// #endregion
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue