ColorBlindness

ColorBlindness

2.1k Downloads

ColorBlindness

Curseforge Curseforge Modrinth CI/CD CodeFactor gitlocalized License

ColorBlindness is a Minecraft mod (Forge, NeoForge, Fabric, Quilt). The purpose is to provide color blindness potion effects for other mods to add their own potions or items with color blindness effects.

The Fabric / Quilt version needs the following mods:

Effects

  • Achromatomaly: Color weakness
  • Achromatopsia: Color blindness
  • Deuteranomaly: Green weakness
  • Deuteranopia: Green blindness
  • Protanomaly: Red weakness
  • Protanopia: Red blindness
  • Tritanomaly: Blue weakness
  • Tritanopia: Blue blindness

In-game usage

Type the following line to give you the Achromatopsia effect for 10 seconds.

/effect give YourName colorblindness:achromatopsia 10

Import to your project

Add the following to your build.gradle file:

since 1.20.4-3.0.0.0

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation fg.deobf("com.github.cech12:ColorBlindness:${loader}:${colorblindness_version}")
}

Replace ${loader} with the loader (forge, neoforge or fabric) you want to use.

Replace ${colorblindness_version} with the version of ColorBlindness that you want to use. The actual versions can be found on the Github Releases page.

before 1.20.4-3.0.0.0

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation fg.deobf("com.github.cech12:ColorBlindness:${colorblindness_version}")
}

Replace ${colorblindness_version} with the version of ColorBlindness that you want to use. The actual versions can be found on the Github Releases page.