* ignore .vs * initial commit of ~space~ * fixed planets in config * adding ore blocks to anorthite, renamed moon deepslate to dunite * added moon ore veins, adjusted earth ones, added separate rock blocks * added new buds for the new minerals, adjusted veins again * forgot to add titanium to the moon! * added moon zombies * adjusted veins + added endermites * first step to the moon Signed-off-by: SverhRazum-Nah <leon.trol@mail.ru> * change sky colors back to black * added ad astra ores * add desh veins to the moon * added missing certus clusters * adding desh veins/loc * adding meteors + rabbit houses * cheeeeeeese * replaced meteor concrete with sky stone * burying the meteors a little more * initial commit of ores to field guide tool * updated mineral data with new space ores * fixed trapdoor orientation * added anorthite rocks/bricks, changed names of cut deepslate, made cut deepslate + asurine visible * changed average moon temp * First Push * split 'for' value into arrays, added russian * pillars are stone, not metal * adjusting spawns (again) * oh so that's how charge and energy budget work * added recipes for the create decoration blocks * bricks and rocks * remove ad astra recipes * added limpets to the moon * Landing on Mars Signed-off-by: SverhRazum-Nah <leon.trol@mail.ru> * Man thats a lot * added translations for vein types, rock types, and added ukranium * rabbit adjustments * removed cooking anorthite cobble into raw * Pushin P * Parity * Move translation tokens to the language tokens JSON * Remove bin and obj * Update .gitignore * Update .gitignore Signed-off-by: Pyritie <pyritie@gmail.com> * moon mobs again * Ore Index being Written * More PRogress * Improve string formatting * toned down realgar * structures! shulkers! oh my! * Some progress on the vein index writing * replace obsidian with scorchia in meteors * meteor adjustments * Actual vein index * add globes to loot table * Project Completed * added solar power values * adjusted ad astra recipes, hid some of the items, added bedrock ores * more fiddling with structures * made the rover a bit cheaper * comply with review * anorthite dust * retextured shulkers * disabled stuff from species/endermanoverhaul * texture tweak * recipe tweak * fixed space rocks being invisible on the map for some reason * removed earth bauxite vein * mars rock * mars stuff * starting work on mars biome generation * put biomes in folders * climate stuff * more mars worldgen * added carve tag to space blocks * move to correct folder * removed veins * added armalcolite to the moon * anorthite -> anorthosite * plagioclase -> syenite * dunite -> basanite * what is climate * climates again * mars rock layers * fixed the temps! * Update tags.js Signed-off-by: Pyritie <pyritie@gmail.com> * Add a Solution file * adding this back * remove tools folder since it was moved to a different repo * some stuff that didn't merge * updates * merges * merges --------- Signed-off-by: SverhRazum-Nah <leon.trol@mail.ru> Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: SverhRazum-Nah <leon.trol@mail.ru> Co-authored-by: Nebby1999 <nebby131999@gmail.com>
80 lines
No EOL
1.9 KiB
JavaScript
80 lines
No EOL
1.9 KiB
JavaScript
// priority: 0
|
|
|
|
const registerAdAstraMaterials = (event) => {
|
|
|
|
// #region moon ores
|
|
|
|
event.create('tfg:diopside')
|
|
.gem(2)
|
|
.components('1x magnesium', '1x calcium', '2x silicon', '6x oxygen')
|
|
.color(0xb7cca1)
|
|
.iconSet(GTMaterialIconSet.GEM_VERTICAL)
|
|
.ore()
|
|
.addOreByproducts('magnesium', 'magnetite', 'olivine')
|
|
|
|
event.create('tfg:enstatite')
|
|
.gem(2)
|
|
.components('2x magnesium', '2x silicon', '6x oxygen')
|
|
.color(0x595813)
|
|
.iconSet(GTMaterialIconSet.GEM_VERTICAL)
|
|
.ore()
|
|
.addOreByproducts('olivine', 'olivine', 'magnetite')
|
|
|
|
event.create('tfg:fayalite')
|
|
.gem(2)
|
|
.components('2x iron', '1x silicon', '4x oxygen')
|
|
.color(0x421209)
|
|
.iconSet(GTMaterialIconSet.LAPIS)
|
|
.ore()
|
|
.addOreByproducts('olivine', 'magnetite', 'magnetite')
|
|
|
|
event.create('tfg:armalcolite')
|
|
.gem(2)
|
|
.components('1x magnesium', '1x rutile', '1x ilmenite')
|
|
.color(0x443333)
|
|
.iconSet(GTMaterialIconSet.GEM_HORIZONTAL)
|
|
.ore()
|
|
.addOreByproducts('rutile', 'rutile', 'ilmenite')
|
|
|
|
// #endregion
|
|
|
|
// #region ad astra ores
|
|
|
|
// moon
|
|
|
|
// TODO: add smelting recipe for this
|
|
event.create('ad_astra:desh')
|
|
.components('2x olivine', '1x rutile', '4x nitrogen')
|
|
.color(0xd38b4c)
|
|
.secondaryColor(0xa90936)
|
|
.iconSet(GTMaterialIconSet.METALLIC)
|
|
.ore()
|
|
|
|
// TODO: still need to balance these
|
|
|
|
// mars
|
|
event.create('ad_astra:ostrum')
|
|
.components('2x scheelite', '1x hematite', '1x rutile', '4x oxygen')
|
|
.color(0xbd7980)
|
|
.secondaryColor(0x543d4a)
|
|
.iconSet(GTMaterialIconSet.BRIGHT)
|
|
.ore()
|
|
|
|
// mercury
|
|
event.create('ad_astra:calorite')
|
|
.components('2x mercury', '1x tungsten', '1x rhodium', '2x sulfur')
|
|
.color(0xcf223c)
|
|
.secondaryColor(0x691533)
|
|
.iconSet(GTMaterialIconSet.METALLIC)
|
|
.ore()
|
|
|
|
// venus
|
|
event.create('ad_astra:etrium')
|
|
.components('1x niobium', '1x molybdenum', '1x ruthenium', '3x carbon', '1x monochloramine')
|
|
.color(0x58b1a1)
|
|
.secondaryColor(0xbafcf6)
|
|
.iconSet(GTMaterialIconSet.SHINY)
|
|
.ore()
|
|
|
|
// #endregion
|
|
} |