Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть How to use the StarMaker Minecraft mod to make your own planets!

  • Scratch Cat Ball
  • 2025-06-29
  • 492
How to use the StarMaker Minecraft mod to make your own planets!
  • ok logo

Скачать How to use the StarMaker Minecraft mod to make your own planets! бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно How to use the StarMaker Minecraft mod to make your own planets! или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку How to use the StarMaker Minecraft mod to make your own planets! бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео How to use the StarMaker Minecraft mod to make your own planets!

Today, we're gonna be making our own solar system in the Galacticraft addon StarMaker!

-Biome code:
{
"persistance": 1.2, // "hill" frequency
"octaves": 4, //
"height": 67, //Base height of biome.
"intquility": 9, //Smoothing biomes at the junction.
"biomeSize": 1.2, //From which perlin noise parameter to generate a biome. See in AsmodeusCore debug mode.
"water_color": [0,16,46], //Water color in biome. RGB.
"foliage_color": [0,0,0], //Foliage color in biome. RGB.
"grass_color": [0,0,0], //Grass color in biome. RGB.
"surface_block": "minecraft:stone", //Surface block in biome. Format: "modid:id:metadata"
"subsurface_block": "minecraft:stone", //Sub-surface block in biome. Format: "modid:id:metadata"
"oregen": [ //List of oregen elements.
{
"ore_block": "minecraft:iron_ore", //Ore block for generation. Format: "modid:id:metadata".
"replaced_block": "minecraft:stone", //Replaced block on generation ore. Format: "modid:id:metadata".
"block_count": 5, //Count of ore in vein.
"minY": 5, //Min Y for gen.
"maxY": 70, //Max Y for gen.
"amount_per_chunk": 20 //Amount veins on chunk.
}
]
}

-Planet code:
{
"parent_system": "l9859", //Parent system. You must specify the file name from the `systems/` folder
"orbit_data": { //Orbit params for planet
"phase": 1.14, //Position in a circle around the main star. 0.0-2.0 Pi.
"size": 0.0124, //Size of planet on galaxy map.
"distance_from_center": 3.30, //Distance from the main star.
"relative_time": 3.30, //Rotation speed around the main star.
"eccentricityX": 0.0242, //Orbital elongation along the X axis.
"eccentricityY": 0.0319 //Orbital elongation along the Y axis.
},
"gravity": 0.13398, //Gravity on planet. (0.058 (Earth-like) - 0.08 (Zero-gravity))
"atmosphere_pressure": 1, //Atmospheric pressure.
"temperature": [
17.8, //Tempterature on planet. positive - hot, negative - cold.
3.0 //Temperature change modificator during the day.
],
"wind": 0.0, //Modificator of wind on the planet
"day_lenght": 37680, //The length of the day on the planet. 24000 - overwold lenght.
"breathable": true, //The ability to breathe on a planet without oxygen equipment.
"solar_radiation": true, //Solar radiation on planet
"corrosive_atmo": false, //Corrosive atmosphere on planet (Destroy your armor without shield).
"sun_brightness": 0.5, //Sun brightness on planet.
"star_brightness": 0.5, //Star brightness on planet.
"sky": [ //Sky color on planet.
0, //Red
0, //Green
0 //Blue
],
"fog": [//Fog color on planet.
0, //Red
0, //Green
0 //Blue
],
"cloud": [//Cloud color and y pos on planet.
0, //Red
0, //Green
0, //Blue
180 //Y pos
],
"world_data": {
"tier": 6, //Tier rocket for fly on planet. (Classic GC fly system).
"genCave": true, //Allow generation cave on planet.
"genRavine": false, //Allow generation ravine on planet.
"crateProb": 2, //Crater generation frequency. 0=disabled.
"stone_block": "minecraft:stone", //Main layer block for planet. Format: modid:name:metadata
"mapSize": 1000.0, //Map size for biomes gen.
"water_block": "minecraft:air", //Water block. Format: modid:name:metadata
"waterY": 50, //Water generation level.
"lander_type": -1,
"meteorFrequency": 0.5, //ONLY IN 1.0.2 and above
"fallDamageModifier": 2.31, //ONLY IN 1.0.2 and above
"throwMeteors": true //ONLY in 1.0.1 and below.
//Allow throw meteors on planet.
},
"biomes": [ //Biomes list from `biomes/` folder.
"l9859c_01"
],
"sun_size": 10.7142857143, //Modificator sun size on sky planet.
"precipitation": false, //Allow rain, snow, etc.
"unreachable": false, //Deny visiting the planet
"tidallyLocked": false //Stops the day/night cycle and makes it possible to change the position of a star in the sky via day_lenght par.
}

-Star code
{
"galaxy": "milky_way", //Parent galaxy. You can enter any galaxy name. StarMaker will create it himself.
"posX": 34.6, // X position on galaxy map.
"posY": 0, // Y position on galaxy map.
"stars": [ //List of stars in the system. Must have at least 1 element. The first element is the main star of the system. Max 5 elements.
{
"name": "l9859", //Unlocalized name of main star.
"star_size": 0.3, //Size of star
"star_type": 1, //0=Sub-Dwarf, 1=Dwarf, 2=Subgiant, 3=Giant, 4=Supergiant, 5=Hypergiant, 6=Blackhole
"star_color": 1, //0=Brown, 1=Red, 2=Orange, 3=Yellow, 4=White, 5=Lightblue, 6=Blue
"habitable_zone": [0.077, 0.086]
}
]
}

-Language code
planet.l9859c.name=L 98-59 c

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]