MythicMobs
Iris has support for Mythic Mobs 5.
{
"type": "CAT",
"surface": "LAND",
"specialType": "MythicMobs:JumpingSpider"
}
The
"type": "CAT"
does not actually change anything. It just makes sure Iris accepts the entity.As seen here, to make Iris spawn a mythic mob, you'll need to create a new Iris entity file with
specialType
, where you prefix the name with MythicMobs:
VSCode will autocomplete Mythic Mob names installed on the server if you are using Iris Studio, too!
Due to MythicMobs not supporting custom biomes, it can be hard to use MythicMobs random spawns to spawn mobs within Iris biomes.
However, you can use this small side plugin to add support for Iris biomes called RealBiomeCondition.
RandomSpawns/IrisSpawns.yml
KingSludge:
MobType: KingSludge
Worlds: world_iris
Chance: 0.01
Priority: 1
Action: REPLACE
Conditions:
- entitytype{t=SLIME} true
- biometype SWAMP true
QueenSludge:
MobType: QueenSludge
Worlds: world_iris
Chance: 0.01
Priority: 1
Action: REPLACE
Conditions:
- entitytype{t=SLIME} true
- realbiome minecraft:swamp,overworld:swamp_cambian_drift,overworld:swamp_marsh_rotten true
Last modified 3mo ago