Skip to content

Commit

Permalink
Added Polytone (#72)
Browse files Browse the repository at this point in the history
* added polytone

* fog
  • Loading branch information
MehVahdJukaar authored Feb 5, 2024
1 parent 402407f commit 39bf9d7
Showing 1 changed file with 25 additions and 0 deletions.
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;

0 comments on commit 39bf9d7

Please sign in to comment.