HomeJavaModsDestiny Constellations
Destiny Constellations
ModsJava

Destiny Constellations

by mystia · on Modrinth

A highly configurable Forge 1.20.1 mod that adds a Genshin-style constellation progression system, custom items, and creative tab.

⬇ Download on Modrinth
Destiny Constellations — screenshot 1

Touhou Destiny Constellations

Overview

Configuration Guide

1. Titles, Stories, and Descriptions

Configuration files generate in config/touhou_destiny/ after the first launch. You can open these .txt files and write your custom text in UTF-8 format:

2. Background Images & Star Positions

Open config/touhou_destiny-client.toml to configure visual settings:

KubeJS Integration (Recommended)

While the mod provides simple vanilla attributes by default, it is highly recommended to use KubeJS to script complex or custom constellation abilities for your modpack. You can query a player's current constellation level (0 to 6) using the provided Java API: com.touhou.destiny.integration.ConstellationHelper.getLevel(player). KubeJS Example (Server-side server_scripts):

EntityEvents.hurt(event => {
    let player = event.entity;
    if (player.isPlayer()) {
        // Query the player's unlocked constellation level
        let level = Java.resolve('com.touhou.destiny.integration.ConstellationHelper').getLevel(player);
        if (level >= 1) {
            // Example: Reduce incoming damage by 20% if level is 1 or higher
            event.damage = event.damage * 0.8;
        }
    }
});

Dependencies

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more