Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Added Polytone #72

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions alternatives/polytone.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Mod from "../build_src/mod.mjs";

const HOST_ID = "polytone";

const mod = new Mod(
"Polytone",
"MehVahdJukaar",
"Multipurpose Visual Customization mod: tweak Colors, Colormaps, Lightmaps, Sounds, Gui Elements, Biome Effects, Particles, Fog Colors and more. Supports old Optifine formats",
)
.icon("https://github.com/MehVahdJukaar/polytone/blob/master/forge/src/main/resources/icon.png?raw=true")
.add_version(
{ loader: ["fabric"], v: [18, 19, 20.4] },
{ loader: ["neoforge"], v: [19, 20.4] },
{ loader: ["forge"], v: [18, 19, 20.1] })
.add_category("Cosmetic", "Fog")
.add_link(
{ host: "modrinth", params: { namespace: HOST_ID } },
{ host: "curseforge", params: { namespace: HOST_ID } },
{ host: "github", params: { namespace: HOST_ID }}
);

await mod.import_versions_from_modrinth(HOST_ID);


export default mod;
Loading