Compatibility
Minecraft: Java Edition
26.1
1.21.x
Platforms
Supported environments
Links
Details
PrideSpecial Reborn
This mod allows users to override the pride flags returned by PrideLib under different circumstances via configuration files.
Configuration file
Located in .minecraft/config/pridespecial.json, the configuration file has the following format:
[
{
"flags": [
// A list of Pride Flags, defined in pridelib JSON format
{
"colors": ["#ff0000", "#ffff00", "#0000ff", "#ffffff", "#000000"]
},
// Can also be a reference to a loaded flag
"pride:rainbow",
// ...
],
// Specifying a class name so the override above can be only applied to the target class.
// Leaving blank or omitting indicates that it applies to all circumstances.
"caller": ""
},
{
// Can also specify a single flag/flag reference if randomizing from a list is not preferred
"flags": "pride:transgender"
}
//...
]
Built-in flag types
pridespecial:single
Single-colored flags can be defined as well:
{
"shape": "pridespecial:single",
"color": "#008543"
}
pridespecial:blank
Alternatively, it's possible to render nothing:
{
"shape": "pridespecial:blank"
}


