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:
- Fabric API (Github, Curseforge, Modrinth)
- Achromatomaly: Color weakness
- Achromatopsia: Color blindness
- Deuteranomaly: Green weakness
- Deuteranopia: Green blindness
- Protanomaly: Red weakness
- Protanopia: Red blindness
- Tritanomaly: Blue weakness
- Tritanopia: Blue blindness
Type the following line to give you the Achromatopsia effect for 10 seconds.
/effect give YourName colorblindness:achromatopsia 10
Add the following to your build.gradle
file:
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.
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.