From bd41737d5c85a8779aa2f56bc47805bfa6deccc6 Mon Sep 17 00:00:00 2001 From: copygirl Date: Wed, 20 Jul 2022 13:34:33 +0200 Subject: [PATCH] Casual Update - Add Apathy Mod (hostile mobs are neutral) - Add In Control! (no hostile mobs on surface) - Add More MobGriefing Options - Add Global Gamerules - Remove Passive Endermen --- config/apathy/boss.cfg | 104 + config/apathy/general.cfg | 67 + config/apathy/mobs.cfg | 169 ++ config/ars_nouveau-common.toml | 2 +- config/globalgamerules-common.toml | 118 ++ config/incontrol/spawn.json | 7 + config/passiveendermen-common.toml | 9 - .../moremobgriefingoptions-server.toml | 1843 +++++++++++++++++ mods/apathy-mod.pw.toml | 13 + mods/global-gamerules.pw.toml | 13 + mods/in-control.pw.toml | 13 + mods/more-mobgriefing-options.pw.toml | 13 + mods/passive-endermen.pw.toml | 13 - 13 files changed, 2361 insertions(+), 23 deletions(-) create mode 100644 config/apathy/boss.cfg create mode 100644 config/apathy/general.cfg create mode 100644 config/apathy/mobs.cfg create mode 100644 config/globalgamerules-common.toml create mode 100644 config/incontrol/spawn.json delete mode 100644 config/passiveendermen-common.toml create mode 100644 defaultconfigs/moremobgriefingoptions-server.toml create mode 100644 mods/apathy-mod.pw.toml create mode 100644 mods/global-gamerules.pw.toml create mode 100644 mods/in-control.pw.toml create mode 100644 mods/more-mobgriefing-options.pw.toml delete mode 100644 mods/passive-endermen.pw.toml diff --git a/config/apathy/boss.cfg b/config/apathy/boss.cfg new file mode 100644 index 0000000..979b2df --- /dev/null +++ b/config/apathy/boss.cfg @@ -0,0 +1,104 @@ +configVersion: 2 + +################## +## Ender Dragon ## +################## + +# What is the initial state of the Ender Dragon in the End? +# If 'default', she will be present and attack players, just like the vanilla game. +# If 'passive_dragon', she will be present, but idly noodle about until a player provokes her first. +# If 'calm', the End will not contain an Ender Dragon by default. +# Note: If you choose 'calm', you should also change the 'portalInitialState' setting, so it is possible to leave the End. +# Default: default +dragonInitialState: passive_dragon + +# What is the initial state of the End Portal in the center of the main End Island? +# If 'closed', it will not be usable until the first Ender Dragon dies, just like in vanilla. +# If 'open', it will already be open. +# If 'open_with_egg', it will already be open and a Dragon Egg will be present. +# Default: closed +portalInitialState: open + +# How many End Gateways will be available when first entering the End, without any Dragons having to die? +# Must be at least 0. +# Must be at most 20. +# Default: 0 +initialEndGatewayCount: 0 + +# What happens when a player places four End Crystals onto the exit End Portal? +# If 'default', a new Ender Dragon will be summoned and she will attack the player, just like in vanilla. +# If 'spawn_gateway', the mechanic will be replaced with one that directly creates an End Gateway, with no fighting required. +# If 'disabled', nothing will happen. +# Default: default +resummonSequence: default + +# If 'true', and 'dragonInitialState' is 'calm', players automatically earn the Free the End advancement when visiting the End. +# If 'true', and 'resummonSequence' is 'spawn_gateway', players earn the advancement for resummoning the Dragon when using the spawn_gateway mechanic. +# Has no effects otherwise. Probably should be left as 'true'. +# Default: true +simulacraDragonAdvancements: true + +# Can the Dragon perform the 'strafe_player' or 'charging_player' actions? +# strafe_player is the one where she shoots a fireball. +# charge_player is the one where she tries to fly into you. +# If 'false', she will perform the 'landing_approach' action instead, which will cause her to perch on the portal. +# Default: true +dragonFlies: true + +# Can the Dragon perform the 'sitting_flaming' or 'sitting_attacking' actions? +# sitting_flaming is the one where she perches on the End portal and pours out a puddle of dragon's breath. +# sitting_attacking is when she roars at you. +# If 'false', she will perform the 'sitting_scanning' action instead, which will soon lead to her leaving her perch. +# Default: true +dragonSits: true + +# Does the Dragon deal contact damage? +# Default: true +dragonDamage: true + +# Does the Dragon knock back nearby entities, and damage them while she's sitting? +# Default: true +dragonKnockback: true + +############ +## Wither ## +############ + +# Comma-separated list of difficulties where the Wither is enabled. +# If the current world difficulty does not appear in the set, building the Wither formation will spawn a Nether Star +# item, and give you the advancement for killing the Wither. +# Default: easy, normal, hard +witherDifficulties: easy, normal, hard + +# Is the Wither allowed to intentionally target players? +# Default: true +witherTargetsPlayers: true + +# Is the Wither allowed to intentionally target non-players? +# Default: true +witherTargetsMobs: true + +# Can the Wither fire black wither skulls? +# Default: true +blackWitherSkulls: true + +# Can the Wither fire blue ('charged') wither skulls on Normal and Hard difficulty? +# Default: true +blueWitherSkulls: true + +# Does the Wither break nearby blocks after it gets damaged? +# Default: true +witherBreaksBlocks: true + +#################### +## Elder Guardian ## +#################### + +# This option affects your own client. +# What happens when an Elder Guardian gives you the Mining Fatigue effect? +# If 'default', the sound effect and particle appear. +# If 'only_sound', only the sound plays, and if 'only_particle', only the particle effect appears. +# If 'disabled', neither of those happen. +# Default: default +elderGuardianEffect: only_sound + diff --git a/config/apathy/general.cfg b/config/apathy/general.cfg new file mode 100644 index 0000000..210d820 --- /dev/null +++ b/config/apathy/general.cfg @@ -0,0 +1,67 @@ +configVersion: 0 + +################## +## Optimization ## +################## + +# By default, mobs that are currently attacking a player do not check every tick if it's still okay to do so. +# This is how often the mob will check. (Set this to 1 to check every tick.) +# Must be at least 1. +# Default: 20 +recheckInterval: 20 + +# Should Apathy attempt to optimize the rule in the config file, to do less work per tick? +# If your rule is doing something unexpected, or isn't working like it should, try turning this off. +# And report it too, since it's definitely a bug, lol. +# Default: true +runRuleOptimizer: true + +################################ +## Wow even more misc options ## +################################ + +# Comma-separated list of difficulties where zombies are allowed to attack villagers. +# Default: easy, normal, hard +zombieAttackVillagerDifficulties: easy, normal, hard + +#################### +## Revenge Spread ## +#################### + +# Comma-separated list of difficulties. +# If the current world difficulty appears in the set, zombified piglins will alert their friends +# when a player provokes one. This will also spread Apathy's revengeTimer to them. +# Default: easy, normal, hard +angryPiggies: easy, normal, hard + +# Let's say this option is set to 10, and you attack a zombie. Other zombies within 10 blocks will have their revengeTimer set, too. +# This option affects mobs of the same type only. +# Please recall that the revengeTimer is an Apathy concept, and Apathy only ever suppresses normal mob AI. +# i.e, this won't cause a mob to attack a player that already wasn't going to. +# Must be at least 0. +# Default: 0 +sameTypeRevengeSpread: 16 + +# When attacking any mob, other mobs within this range will have their revengeTimer set, too. +# This option affects all mobs, whether they have the same type or not. +# Please recall that the revengeTimer is an Apathy concept, and Apathy only ever suppresses normal mob AI. +# i.e, this won't cause a mob to attack a player that already wasn't going to. +# Must be at least 0. +# Default: 0 +differentTypeRevengeSpread: 10 + +########### +## Debug ## +########### + +# If 'true', Apathy will dump the rule specified in the config file to the file 'comfig/apathy/dumps/builtin-rule.json'. +# It will also dump the automatically optimized rule out to 'config/apathy/dumps/builtin-rule-opt.json'. +# Maybe this is handy if you'd like to see what the .json format looks like for a particular config file. +# Default: false +debugBuiltinRule: false + +# If 'true', Apathy will dump the rule specified in mobs.json to the file 'config/apathy/dumps/json-rule.json'. +# It will also dump the automatically optimized rule out to 'config/apathy/dumps/json-rule-opt.json'. +# Default: false +debugJsonRule: false + diff --git a/config/apathy/mobs.cfg b/config/apathy/mobs.cfg new file mode 100644 index 0000000..2780eb8 --- /dev/null +++ b/config/apathy/mobs.cfg @@ -0,0 +1,169 @@ +configVersion: 0 + +#################### +## Nuclear Option ## +#################### + +# If set to 'true', no mob will ever attack anyone. +# Use this option if you don't want to deal with the rest of the config file. +# Default: false +nuclearOption: false + +######################### +## Built In Rule Order ## +######################### + +# Which order should the rules in this config file be evaluated in? +# Comma-separated list built out of any or all of the following keywords, in any order: +# json, difficulty, boss, mobSet, tagSet, playerSet, revenge +# Example: difficulty, revenge, playerSet +# Note: If a rule is not listed in the rule order, it will not be checked. +# Default: json, difficulty, boss, mobSet, tagSet, playerSet, revenge +ruleOrder: json, difficulty, boss, mobSet, tagSet, playerSet, revenge + +##################### +## Difficulty Rule ## +##################### + +# Comma-separated list of difficulties. +# Example: easy, normal +# Default: +difficultySet: + +# What happens when the current world difficulty appears in difficultySet? +# May be one of: +# allow - Every mob is always allowed to attack everyone. +# deny - No mob is ever allowed to attack anyone. +# pass - Defer to the next rule. +# Default: pass +difficultySetIncluded: pass + +# What happens when the current world difficulty does *not* appear in difficultySet? +# May be one of: +# allow - Every mob is always allowed to attack everyone. +# deny - No mob is ever allowed to attack anyone. +# pass - Defer to the next rule. +# Default: pass +difficultySetExcluded: pass + +############### +## Boss Rule ## +############### + +# What happens when the attacker is a boss? +# 'Bossness' is defined by inclusion in the 'apathy:bosses' tag. +# May be one of: +# allow - Every boss is allowed to attack everyone. +# deny - No boss is allowed to attack anyone. +# pass - Defer to the next rule. +# Note: If the current attacker is *not* a boss, always passes to the next rule. +# Default: allow +boss: allow + +################## +## Mob Set Rule ## +################## + +# A comma-separated set of mob IDs. +# Example: minecraft:creeper, minecraft:spider +# Default: +mobSet: minecraft:piglin_brute, minecraft:pillager, minecraft:vindicator, minecraft:ravager, minecraft:vex, minecraft:evoker + +# What happens when the attacker's entity ID appears in mobSet? +# May be one of: +# allow - The mob will be allowed to attack the player. +# deny - The mob will not be allowed to attack the player. +# pass - Defer to the next rule. +# Default: pass +mobSetIncluded: allow + +# What happens when the attacker's entity ID does *not* appear in mobSet? +# May be one of: +# allow - The mob will be allowed to attack the player. +# deny - The mob will not be allowed to attack the player. +# pass - Defer to the next rule. +# Default: pass +mobSetExcluded: pass + +################## +## Tag Set Rule ## +################## + +# A comma-separated set of entity type tags. +# Example: minecraft:raiders, some_datapack:some_tag +# Default: +tagSet: + +# What happens when the attacker is tagged with one of the tags in mobTagSet? +# May be one of: +# allow - The mob will be allowed to attack the player. +# deny - The mob will not be allowed to attack the player. +# pass - Defer to the next rule. +# Default: pass +tagSetIncluded: pass + +# What happens when the attacker is *not* tagged with one of the tags in mobTagSet? +# May be one of: +# allow - The mob will be allowed to attack the player. +# deny - The mob will not be allowed to attack the player. +# pass - Defer to the next rule. +# Default: pass +tagSetExcluded: pass + +##################### +## Player Set Rule ## +##################### + +# The name of a set of players. +# If this option is not provided, a player set is not created, and this whole rule always passes. +# Default: no-mobs +playerSetName: aggressive-mobs + +# If 'true', players can add themselves to the set, using '/apathy set join '. +# If 'false', only an operator can add them to the set, using '/apathy set-admin join '. +# Default: true +playerSetSelfSelect: true + +# What happens when a mob tries to attack someone who appears in the playerSet? +# May be one of: +# allow - The mob is allowed to attack the player. +# deny - The mob is not allowed to attack the player. +# pass - Defer to the next rule. +# Default: deny +playerSetIncluded: allow + +# What happens when a mob tries to attack someone who does *not* appear in the playerSet? +# May be one of: +# allow - The mob is allowed to attack the player. +# deny - The mob is not allowed to attack the player. +# pass - Defer to the next rule. +# Default: pass +playerSetExcluded: pass + +################## +## Revenge Rule ## +################## + +# For how many ticks is a mob allowed to retaliate after being attacked? +# Set to -1 to disable this 'revenge' mechanic. +# When the timer expires, defers to the next rule. +# Must be at least -1. +# Note: The exact duration of the attack may be up to ( + ) ticks. +# Btw, the original mod had an option for 'eternal revenge', with an uncapped timer. +# I didn't port that, but the maximum value of the timer is 9223372036854775807 ticks. +# Make of that information what you will ;) +# Default: -1 +revengeTimer: 1200 + +###################### +## Last Resort Rule ## +###################### + +# If absolutely none of the previous rules applied, what happens? +# May be one of: +# allow - By default, mobs are allowed to attack players. +# deny - By default, mobs are not allowed to attack players. +# May *not* be set to 'pass'. +# Default: allow +fallthrough: allow + diff --git a/config/ars_nouveau-common.toml b/config/ars_nouveau-common.toml index f7d5d17..8aab6f4 100644 --- a/config/ars_nouveau-common.toml +++ b/config/ars_nouveau-common.toml @@ -32,7 +32,7 @@ #Range: 0 ~ 200 whunterWeight = 50 #Should the Wilden Hunter attack animals? - hunterHuntsAnimals = true + hunterHuntsAnimals = false #Should the Wilden Stalker attack animals? stalkerHuntsAnimals = false #Should the Wilden Defender attack animals? diff --git a/config/globalgamerules-common.toml b/config/globalgamerules-common.toml new file mode 100644 index 0000000..c1a335d --- /dev/null +++ b/config/globalgamerules-common.toml @@ -0,0 +1,118 @@ + +#Gamerules that are set when a world is loaded +[gamerules] + #Whether advancements should be announced in chat + announce_advancements = true + #Whether command blocks should notify admins when they perform commands + command_block_output = true + #Whether the server should skip checking player speed when the player is wearing elytra. Often helps with jittering due to lag in multiplayer + disable_elytra_movement_check = false + #Whether raids are disabled + disable_raids = false + #Whether the daylight cycle and moon phases progress + do_daylight_cycle = true + #Whether entities that are not mobs should have drops + do_entity_drops = true + #Whether fire should spread and naturally extinguish + do_fire_tick = false + #Players respawn immediately without showing the death screen + do_immediate_respawn = false + #Whether phantoms can spawn in the nighttime + do_insomnia = false + #Whether players should be able to craft only those recipes that they've unlocked first + do_limited_crafting = false + #Whether mobs should drop items and experience orbs + do_mob_loot = true + #Whether mobs should naturally spawn. Does not affect monster spawners + do_mob_spawning = true + #Whether patrols can spawn + do_patrol_spawning = false + #Whether blocks should have drops + do_tile_drops = true + #Whether wandering traders can spawn + do_trader_spawning = true + #Whether the weather can change naturally. The /weather command can still change weather + do_weather_cycle = true + #Whether the player should take damage when drowning + drowning_damage = true + #No comment + e_e_biome_spawning = true + #No comment + end_iron_ore_generation = true + #No comment + end_portal_capturing = true + #Whether the player should take fall damage + fall_damage = true + #Whether the player should take damage in fire, lava, campfires, or on magma blocks + fire_damage = true + #Makes angered neutral mobs stop being angry when the targeted player dies nearby + forgive_dead_players = true + #Whether the player should take damage when inside powder snow + freeze_damage = true + #Whether the player should keep items and experience in their inventory after death + keep_inventory = true + #Whether to log admin commands to server log + log_admin_commands = true + #No comment + malachite_toxcitity = true + #The maximum length of a chain of commands that can be executed during one tick. Applies to command blocks and functions + #Range: > 0 + max_command_chain_length = 65536 + #The maximum number of pushable entities a mob or player can push, before taking 3 suffocation damage per half-second. Setting to 0 or lower disables the rule. Damage affects survival-mode or adventure-mode players, and all mobs but bats. Pushable entities include non-spectator-mode players, any mob except bats, as well as boats and minecarts + #Range: > 0 + max_entity_cramming = 24 + #Whether creepers, zombies, endermen, ghasts, withers, ender dragons, rabbits, sheep, villagers, silverfish, snow golems, and end crystals should be able to change blocks and whether mobs can pick up items, which also disables bartering. This also affects the capability of zombie-like creatures like zombified piglins and drowned to pathfind to turtle eggs + mob_griefing = true + #Whether the player can regenerate health naturally if their hunger is full enough (doesn't affect external healing, such as golden apples, the Regeneration effect, etc.) + natural_regeneration = true + #What percentage of players must sleep to skip the night + #Range: > 0 + players_sleeping_percentage = 50 + #No comment + radiation_damage = true + #How often a random block tick occurs (such as plant growth, leaf decay, etc.) per chunk section per game tick. 0 and negative values disables random ticks, higher numbers increase random ticks. Setting to a high integer results in high speeds of decay and growth. Numbers over 4096 make plant growth or leaf decay instantaneous + #Range: > 0 + random_tick_speed = 3 + #Whether the debug screen shows all or reduced information; and whether the effects of F3+B (entity hitboxes) and F3+G (chunk boundaries) are shown + reduced_debug_info = false + #No comment + ringling_digging = true + #Whether the feedback from commands executed by a player should show up in chat. Also affects the default behavior of whether command blocks store their output text + send_command_feedback = true + #Whether death messages are put into chat when a player dies. Also affects whether a message is sent to the pet's owner when the pet dies + show_death_messages = true + #The number of blocks outward from the world spawn coordinates that a player spawns in when first joining a server or when dying without a personal spawnpoint + #Range: > 0 + spawn_radius = 10 + #Whether players in spectator mode can generate chunks + spectators_generate_chunks = true + #No comment + tf_enforced_progression = true + #Makes angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled + universal_anger = false + #No comment + visopod_nest_spawning = true + +#Configs related to difficult changes +[difficulty] + #If the difficulty should be set on world load + #If true difficulty changes in game will also be saved to the config + set_difficulty = false + #The difficulty to set if 'set_difficulty' is true, respects if the difficulty is locked or not for the world + #Allowed Values: PEACEFUL, EASY, NORMAL, HARD + difficulty = "NORMAL" + #If true the world will be set to hardcore, difficultly will be set to hard independent to the 'difficulty' config + #Setting it to hardcore auto locks the difficulty while this is true + hardcore = false + #If a world's difficulty should be locked when loaded, if world already is locked it can't be changed + #If the global world difficulty is enabled it's set first + lock_difficulty = false + +#A collection of misc configs +[misc] + #If gamerules should be saved to config on world unload + save_gamerules = true + #A comma separated list of commands to run on world join, @p is replaced with joining player name, command is run by the server + #Example: default_commands = ["/tellraw @p [\"\",{\"text\":\"Hi \"},{\"text\":\"@p\",\"color\":\"aqua\"}]"] + default_commands = [] + diff --git a/config/incontrol/spawn.json b/config/incontrol/spawn.json new file mode 100644 index 0000000..eabe248 --- /dev/null +++ b/config/incontrol/spawn.json @@ -0,0 +1,7 @@ +[ + { + "hostile": true, + "seesky": true, + "result": "deny" + } +] diff --git a/config/passiveendermen-common.toml b/config/passiveendermen-common.toml deleted file mode 100644 index 64bbd00..0000000 --- a/config/passiveendermen-common.toml +++ /dev/null @@ -1,9 +0,0 @@ - -[General] - #If enabled, prevents the endermen from teleporting. - preventEndermenFromTeleporting = false - #If enabled, prevents from picking up and placing blocks. - preventEndermenFromGriefing = true - #If enabled, stops the endermen from attacking. - preventEndermenFromAttacking = true - diff --git a/defaultconfigs/moremobgriefingoptions-server.toml b/defaultconfigs/moremobgriefingoptions-server.toml new file mode 100644 index 0000000..18ccf2c --- /dev/null +++ b/defaultconfigs/moremobgriefingoptions-server.toml @@ -0,0 +1,1843 @@ + +#MobGriefing settings +[mobGriefing] + #minecraft:area_effect_cloud mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:area_effect_cloud" = "DEFAULT" + #minecraft:armor_stand mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:armor_stand" = "DEFAULT" + #minecraft:arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:arrow" = "DEFAULT" + #minecraft:axolotl mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:axolotl" = "DEFAULT" + #minecraft:bat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:bat" = "DEFAULT" + #minecraft:bee mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:bee" = "DEFAULT" + #minecraft:blaze mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:blaze" = "FALSE" + #minecraft:boat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:boat" = "DEFAULT" + #minecraft:cat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:cat" = "DEFAULT" + #minecraft:cave_spider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:cave_spider" = "DEFAULT" + #minecraft:chicken mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:chicken" = "DEFAULT" + #minecraft:cod mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:cod" = "DEFAULT" + #minecraft:cow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:cow" = "DEFAULT" + #minecraft:creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:creeper" = "FALSE" + #minecraft:dolphin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:dolphin" = "DEFAULT" + #minecraft:donkey mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:donkey" = "DEFAULT" + #minecraft:dragon_fireball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:dragon_fireball" = "DEFAULT" + #minecraft:drowned mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:drowned" = "FALSE" + #minecraft:elder_guardian mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:elder_guardian" = "DEFAULT" + #minecraft:end_crystal mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:end_crystal" = "DEFAULT" + #minecraft:ender_dragon mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:ender_dragon" = "FALSE" + #minecraft:enderman mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:enderman" = "FALSE" + #minecraft:endermite mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:endermite" = "DEFAULT" + #minecraft:evoker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:evoker" = "DEFAULT" + #minecraft:evoker_fangs mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:evoker_fangs" = "DEFAULT" + #minecraft:experience_orb mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:experience_orb" = "DEFAULT" + #minecraft:eye_of_ender mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:eye_of_ender" = "DEFAULT" + #minecraft:falling_block mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:falling_block" = "DEFAULT" + #minecraft:firework_rocket mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:firework_rocket" = "DEFAULT" + #minecraft:fox mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:fox" = "DEFAULT" + #minecraft:ghast mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:ghast" = "FALSE" + #minecraft:giant mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:giant" = "DEFAULT" + #minecraft:glow_item_frame mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:glow_item_frame" = "DEFAULT" + #minecraft:glow_squid mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:glow_squid" = "DEFAULT" + #minecraft:goat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:goat" = "DEFAULT" + #minecraft:guardian mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:guardian" = "DEFAULT" + #minecraft:hoglin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:hoglin" = "DEFAULT" + #minecraft:horse mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:horse" = "DEFAULT" + #minecraft:husk mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:husk" = "DEFAULT" + #minecraft:illusioner mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:illusioner" = "DEFAULT" + #minecraft:iron_golem mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:iron_golem" = "DEFAULT" + #minecraft:item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:item" = "DEFAULT" + #minecraft:item_frame mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:item_frame" = "DEFAULT" + #minecraft:fireball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:fireball" = "FALSE" + #minecraft:leash_knot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:leash_knot" = "DEFAULT" + #minecraft:lightning_bolt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:lightning_bolt" = "DEFAULT" + #minecraft:llama mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:llama" = "DEFAULT" + #minecraft:llama_spit mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:llama_spit" = "DEFAULT" + #minecraft:magma_cube mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:magma_cube" = "DEFAULT" + #minecraft:marker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:marker" = "DEFAULT" + #minecraft:minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:minecart" = "DEFAULT" + #minecraft:chest_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:chest_minecart" = "DEFAULT" + #minecraft:command_block_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:command_block_minecart" = "DEFAULT" + #minecraft:furnace_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:furnace_minecart" = "DEFAULT" + #minecraft:hopper_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:hopper_minecart" = "DEFAULT" + #minecraft:spawner_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:spawner_minecart" = "DEFAULT" + #minecraft:tnt_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:tnt_minecart" = "DEFAULT" + #minecraft:mule mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:mule" = "DEFAULT" + #minecraft:mooshroom mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:mooshroom" = "DEFAULT" + #minecraft:ocelot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:ocelot" = "DEFAULT" + #minecraft:painting mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:painting" = "DEFAULT" + #minecraft:panda mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:panda" = "DEFAULT" + #minecraft:parrot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:parrot" = "DEFAULT" + #minecraft:phantom mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:phantom" = "DEFAULT" + #minecraft:pig mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:pig" = "DEFAULT" + #minecraft:piglin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:piglin" = "DEFAULT" + #minecraft:piglin_brute mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:piglin_brute" = "DEFAULT" + #minecraft:pillager mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:pillager" = "DEFAULT" + #minecraft:polar_bear mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:polar_bear" = "DEFAULT" + #minecraft:tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:tnt" = "DEFAULT" + #minecraft:pufferfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:pufferfish" = "DEFAULT" + #minecraft:rabbit mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:rabbit" = "DEFAULT" + #minecraft:ravager mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:ravager" = "DEFAULT" + #minecraft:salmon mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:salmon" = "DEFAULT" + #minecraft:sheep mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:sheep" = "DEFAULT" + #minecraft:shulker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:shulker" = "DEFAULT" + #minecraft:shulker_bullet mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:shulker_bullet" = "DEFAULT" + #minecraft:silverfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:silverfish" = "DEFAULT" + #minecraft:skeleton mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:skeleton" = "DEFAULT" + #minecraft:skeleton_horse mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:skeleton_horse" = "DEFAULT" + #minecraft:slime mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:slime" = "DEFAULT" + #minecraft:small_fireball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:small_fireball" = "FALSE" + #minecraft:snow_golem mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:snow_golem" = "DEFAULT" + #minecraft:snowball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:snowball" = "DEFAULT" + #minecraft:spectral_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:spectral_arrow" = "DEFAULT" + #minecraft:spider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:spider" = "DEFAULT" + #minecraft:squid mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:squid" = "DEFAULT" + #minecraft:stray mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:stray" = "DEFAULT" + #minecraft:strider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:strider" = "DEFAULT" + #minecraft:egg mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:egg" = "DEFAULT" + #minecraft:ender_pearl mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:ender_pearl" = "DEFAULT" + #minecraft:experience_bottle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:experience_bottle" = "DEFAULT" + #minecraft:potion mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:potion" = "DEFAULT" + #minecraft:trident mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:trident" = "DEFAULT" + #minecraft:trader_llama mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:trader_llama" = "DEFAULT" + #minecraft:tropical_fish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:tropical_fish" = "DEFAULT" + #minecraft:turtle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:turtle" = "DEFAULT" + #minecraft:vex mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:vex" = "DEFAULT" + #minecraft:villager mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:villager" = "DEFAULT" + #minecraft:vindicator mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:vindicator" = "DEFAULT" + #minecraft:wandering_trader mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:wandering_trader" = "DEFAULT" + #minecraft:witch mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:witch" = "DEFAULT" + #minecraft:wither mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:wither" = "DEFAULT" + #minecraft:wither_skeleton mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:wither_skeleton" = "DEFAULT" + #minecraft:wither_skull mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:wither_skull" = "DEFAULT" + #minecraft:wolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:wolf" = "DEFAULT" + #minecraft:zoglin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:zoglin" = "DEFAULT" + #minecraft:zombie mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:zombie" = "FALSE" + #minecraft:zombie_horse mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:zombie_horse" = "DEFAULT" + #minecraft:zombie_villager mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:zombie_villager" = "FALSE" + #minecraft:zombified_piglin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:zombified_piglin" = "FALSE" + #minecraft:player mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:player" = "DEFAULT" + #minecraft:fishing_bobber mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "minecraft:fishing_bobber" = "DEFAULT" + #create_stuff_additions:projectile_blaze_flame_thrower mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create_stuff_additions:projectile_blaze_flame_thrower" = "DEFAULT" + #create_stuff_additions:brass_moped mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create_stuff_additions:brass_moped" = "DEFAULT" + #create_stuff_additions:tuned_brass_moped mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create_stuff_additions:tuned_brass_moped" = "DEFAULT" + #stalwart_dungeons:projectile_spore_bottle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_spore_bottle" = "DEFAULT" + #stalwart_dungeons:projectile_tungsten_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_tungsten_shield" = "DEFAULT" + #stalwart_dungeons:projectile_warted_tungsten_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_warted_tungsten_shield" = "DEFAULT" + #stalwart_dungeons:projectile_awful_gun mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_awful_gun" = "DEFAULT" + #stalwart_dungeons:projectile_awful_dungeon_spawner mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_awful_dungeon_spawner" = "DEFAULT" + #stalwart_dungeons:projectile_keeping_castle_spawner mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_keeping_castle_spawner" = "DEFAULT" + #stalwart_dungeons:awful_ghast mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:awful_ghast" = "FALSE" + #stalwart_dungeons:nether_keeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:nether_keeper" = "DEFAULT" + #stalwart_dungeons:giddy_blaze mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:giddy_blaze" = "FALSE" + #stalwart_dungeons:incomplete_wither mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:incomplete_wither" = "FALSE" + #stalwart_dungeons:reinforced_blaze mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:reinforced_blaze" = "FALSE" + #stalwart_dungeons:projectile_chorundum_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_chorundum_shield" = "DEFAULT" + #stalwart_dungeons:projectile_end_dungeon_spawner mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_end_dungeon_spawner" = "DEFAULT" + #stalwart_dungeons:propulk mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:propulk" = "DEFAULT" + #stalwart_dungeons:shelterer mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:shelterer" = "DEFAULT" + #stalwart_dungeons:projectile_levitation_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_levitation_projectile" = "DEFAULT" + #stalwart_dungeons:spore_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:spore_projectile" = "DEFAULT" + #stalwart_dungeons:nether_wart_cocoon mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:nether_wart_cocoon" = "DEFAULT" + #stalwart_dungeons:projectile_thunder_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:projectile_thunder_projectile" = "DEFAULT" + #stalwart_dungeons:shelterer_without_armor mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "stalwart_dungeons:shelterer_without_armor" = "DEFAULT" + #alexsmobs:grizzly_bear mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:grizzly_bear" = "DEFAULT" + #alexsmobs:roadrunner mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:roadrunner" = "DEFAULT" + #alexsmobs:bone_serpent mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:bone_serpent" = "DEFAULT" + #alexsmobs:bone_serpent_part mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:bone_serpent_part" = "DEFAULT" + #alexsmobs:gazelle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:gazelle" = "DEFAULT" + #alexsmobs:crocodile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:crocodile" = "DEFAULT" + #alexsmobs:fly mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:fly" = "DEFAULT" + #alexsmobs:hummingbird mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:hummingbird" = "DEFAULT" + #alexsmobs:orca mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:orca" = "DEFAULT" + #alexsmobs:sunbird mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:sunbird" = "DEFAULT" + #alexsmobs:gorilla mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:gorilla" = "DEFAULT" + #alexsmobs:crimson_mosquito mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:crimson_mosquito" = "DEFAULT" + #alexsmobs:mosquito_spit mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:mosquito_spit" = "DEFAULT" + #alexsmobs:rattlesnake mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:rattlesnake" = "DEFAULT" + #alexsmobs:endergrade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:endergrade" = "DEFAULT" + #alexsmobs:hammerhead_shark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:hammerhead_shark" = "DEFAULT" + #alexsmobs:shark_tooth_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:shark_tooth_arrow" = "DEFAULT" + #alexsmobs:lobster mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:lobster" = "DEFAULT" + #alexsmobs:komodo_dragon mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:komodo_dragon" = "DEFAULT" + #alexsmobs:capuchin_monkey mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:capuchin_monkey" = "DEFAULT" + #alexsmobs:tossed_item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:tossed_item" = "DEFAULT" + #alexsmobs:centipede_head mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:centipede_head" = "DEFAULT" + #alexsmobs:centipede_body mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:centipede_body" = "DEFAULT" + #alexsmobs:centipede_tail mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:centipede_tail" = "DEFAULT" + #alexsmobs:warped_toad mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:warped_toad" = "DEFAULT" + #alexsmobs:moose mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:moose" = "DEFAULT" + #alexsmobs:mimicube mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:mimicube" = "DEFAULT" + #alexsmobs:raccoon mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:raccoon" = "DEFAULT" + #alexsmobs:blobfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:blobfish" = "DEFAULT" + #alexsmobs:seal mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:seal" = "DEFAULT" + #alexsmobs:cockroach mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:cockroach" = "DEFAULT" + #alexsmobs:cockroach_egg mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:cockroach_egg" = "DEFAULT" + #alexsmobs:shoebill mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:shoebill" = "DEFAULT" + #alexsmobs:elephant mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:elephant" = "DEFAULT" + #alexsmobs:soul_vulture mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:soul_vulture" = "DEFAULT" + #alexsmobs:snow_leopard mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:snow_leopard" = "DEFAULT" + #alexsmobs:spectre mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:spectre" = "DEFAULT" + #alexsmobs:crow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:crow" = "DEFAULT" + #alexsmobs:alligator_snapping_turtle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:alligator_snapping_turtle" = "DEFAULT" + #alexsmobs:mungus mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:mungus" = "DEFAULT" + #alexsmobs:mantis_shrimp mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:mantis_shrimp" = "DEFAULT" + #alexsmobs:guster mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:guster" = "DEFAULT" + #alexsmobs:sand_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:sand_shot" = "DEFAULT" + #alexsmobs:gust mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:gust" = "DEFAULT" + #alexsmobs:warped_mosco mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:warped_mosco" = "DEFAULT" + #alexsmobs:hemolymph mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:hemolymph" = "DEFAULT" + #alexsmobs:straddler mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:straddler" = "DEFAULT" + #alexsmobs:stradpole mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:stradpole" = "DEFAULT" + #alexsmobs:straddleboard mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:straddleboard" = "DEFAULT" + #alexsmobs:emu mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:emu" = "DEFAULT" + #alexsmobs:emu_egg mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:emu_egg" = "DEFAULT" + #alexsmobs:platypus mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:platypus" = "DEFAULT" + #alexsmobs:dropbear mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:dropbear" = "DEFAULT" + #alexsmobs:tasmanian_devil mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:tasmanian_devil" = "DEFAULT" + #alexsmobs:kangaroo mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:kangaroo" = "DEFAULT" + #alexsmobs:cachalot_whale mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:cachalot_whale" = "DEFAULT" + #alexsmobs:cachalot_echo mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:cachalot_echo" = "DEFAULT" + #alexsmobs:leafcutter_ant mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:leafcutter_ant" = "DEFAULT" + #alexsmobs:enderiophage mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:enderiophage" = "DEFAULT" + #alexsmobs:enderiophage_rocket mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:enderiophage_rocket" = "DEFAULT" + #alexsmobs:bald_eagle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:bald_eagle" = "DEFAULT" + #alexsmobs:tiger mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:tiger" = "DEFAULT" + #alexsmobs:tarantula_hawk mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:tarantula_hawk" = "DEFAULT" + #alexsmobs:void_worm mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:void_worm" = "DEFAULT" + #alexsmobs:void_worm_part mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:void_worm_part" = "DEFAULT" + #alexsmobs:void_worm_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:void_worm_shot" = "DEFAULT" + #alexsmobs:void_portal mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:void_portal" = "DEFAULT" + #alexsmobs:frilled_shark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:frilled_shark" = "DEFAULT" + #alexsmobs:mimic_octopus mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:mimic_octopus" = "DEFAULT" + #alexsmobs:seagull mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:seagull" = "DEFAULT" + #alexsmobs:froststalker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:froststalker" = "DEFAULT" + #alexsmobs:ice_shard mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:ice_shard" = "DEFAULT" + #alexsmobs:tusklin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:tusklin" = "DEFAULT" + #alexsmobs:laviathan mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:laviathan" = "DEFAULT" + #alexsmobs:cosmaw mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:cosmaw" = "DEFAULT" + #alexsmobs:toucan mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:toucan" = "DEFAULT" + #alexsmobs:maned_wolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:maned_wolf" = "DEFAULT" + #alexsmobs:anaconda mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:anaconda" = "DEFAULT" + #alexsmobs:anaconda_part mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:anaconda_part" = "DEFAULT" + #alexsmobs:vine_lasso mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:vine_lasso" = "DEFAULT" + #alexsmobs:anteater mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:anteater" = "DEFAULT" + #alexsmobs:rocky_roller mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:rocky_roller" = "DEFAULT" + #alexsmobs:flutter mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:flutter" = "DEFAULT" + #alexsmobs:pollen_ball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:pollen_ball" = "DEFAULT" + #alexsmobs:gelada_monkey mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:gelada_monkey" = "DEFAULT" + #alexsmobs:jerboa mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:jerboa" = "DEFAULT" + #alexsmobs:terrapin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:terrapin" = "DEFAULT" + #alexsmobs:comb_jelly mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:comb_jelly" = "DEFAULT" + #alexsmobs:cosmic_cod mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:cosmic_cod" = "DEFAULT" + #alexsmobs:bunfungus mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:bunfungus" = "DEFAULT" + #alexsmobs:bison mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:bison" = "DEFAULT" + #alexsmobs:giant_squid mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:giant_squid" = "DEFAULT" + #alexsmobs:squid_grapple mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:squid_grapple" = "DEFAULT" + #alexsmobs:sea_bear mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:sea_bear" = "DEFAULT" + #alexsmobs:devils_hole_pupfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:devils_hole_pupfish" = "DEFAULT" + #alexsmobs:catfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:catfish" = "DEFAULT" + #alexsmobs:flying_fish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:flying_fish" = "DEFAULT" + #alexsmobs:skelewag mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "alexsmobs:skelewag" = "DEFAULT" + #littlecontraptions:contraption_barge mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlecontraptions:contraption_barge" = "DEFAULT" + #guardvillagers:guard mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "guardvillagers:guard" = "DEFAULT" + #twilightforest:adherent mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:adherent" = "DEFAULT" + #twilightforest:alpha_yeti mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:alpha_yeti" = "DEFAULT" + #twilightforest:armored_giant mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:armored_giant" = "DEFAULT" + #twilightforest:bighorn_sheep mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:bighorn_sheep" = "DEFAULT" + #twilightforest:blockchain_goblin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:blockchain_goblin" = "DEFAULT" + #twilightforest:boar mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:boar" = "DEFAULT" + #twilightforest:carminite_broodling mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:carminite_broodling" = "DEFAULT" + #twilightforest:carminite_ghastguard mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:carminite_ghastguard" = "DEFAULT" + #twilightforest:carminite_ghastling mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:carminite_ghastling" = "DEFAULT" + #twilightforest:carminite_golem mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:carminite_golem" = "DEFAULT" + #twilightforest:chain_block mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:chain_block" = "DEFAULT" + #twilightforest:charm_effect mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:charm_effect" = "DEFAULT" + #twilightforest:cicada_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:cicada_shot" = "DEFAULT" + #twilightforest:cube_of_annihilation mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:cube_of_annihilation" = "DEFAULT" + #twilightforest:death_tome mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:death_tome" = "DEFAULT" + #twilightforest:deer mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:deer" = "DEFAULT" + #twilightforest:dwarf_rabbit mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:dwarf_rabbit" = "DEFAULT" + #twilightforest:falling_ice mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:falling_ice" = "DEFAULT" + #twilightforest:fire_beetle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:fire_beetle" = "DEFAULT" + #twilightforest:giant_miner mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:giant_miner" = "DEFAULT" + #twilightforest:harbinger_cube mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:harbinger_cube" = "DEFAULT" + #twilightforest:hedge_spider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:hedge_spider" = "DEFAULT" + #twilightforest:helmet_crab mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:helmet_crab" = "DEFAULT" + #twilightforest:hostile_wolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:hostile_wolf" = "DEFAULT" + #twilightforest:hydra mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:hydra" = "DEFAULT" + #twilightforest:hydra_mortar mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:hydra_mortar" = "DEFAULT" + #twilightforest:ice_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:ice_arrow" = "DEFAULT" + #twilightforest:thrown_ice mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:thrown_ice" = "DEFAULT" + #twilightforest:ice_crystal mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:ice_crystal" = "DEFAULT" + #twilightforest:ice_snowball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:ice_snowball" = "DEFAULT" + #twilightforest:king_spider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:king_spider" = "DEFAULT" + #twilightforest:knight_phantom mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:knight_phantom" = "DEFAULT" + #twilightforest:kobold mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:kobold" = "DEFAULT" + #twilightforest:lich mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:lich" = "DEFAULT" + #twilightforest:lich_bolt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:lich_bolt" = "DEFAULT" + #twilightforest:lich_bomb mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:lich_bomb" = "DEFAULT" + #twilightforest:lich_minion mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:lich_minion" = "DEFAULT" + #twilightforest:lower_goblin_knight mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:lower_goblin_knight" = "DEFAULT" + #twilightforest:loyal_zombie mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:loyal_zombie" = "DEFAULT" + #twilightforest:maze_slime mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:maze_slime" = "DEFAULT" + #twilightforest:minoshroom mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:minoshroom" = "DEFAULT" + #twilightforest:minotaur mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:minotaur" = "DEFAULT" + #twilightforest:mist_wolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:mist_wolf" = "DEFAULT" + #twilightforest:moonworm_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:moonworm_shot" = "DEFAULT" + #twilightforest:mosquito_swarm mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:mosquito_swarm" = "DEFAULT" + #twilightforest:naga mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:naga" = "DEFAULT" + #twilightforest:nature_bolt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:nature_bolt" = "DEFAULT" + #twilightforest:penguin mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:penguin" = "DEFAULT" + #twilightforest:pinch_beetle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:pinch_beetle" = "DEFAULT" + #twilightforest:plateau_boss mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:plateau_boss" = "DEFAULT" + #twilightforest:protection_box mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:protection_box" = "DEFAULT" + #twilightforest:quest_ram mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:quest_ram" = "DEFAULT" + #twilightforest:raven mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:raven" = "DEFAULT" + #twilightforest:redcap mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:redcap" = "DEFAULT" + #twilightforest:redcap_sapper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:redcap_sapper" = "DEFAULT" + #twilightforest:rising_zombie mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:rising_zombie" = "DEFAULT" + #twilightforest:roving_cube mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:roving_cube" = "DEFAULT" + #twilightforest:seeker_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:seeker_arrow" = "DEFAULT" + #twilightforest:skeleton_druid mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:skeleton_druid" = "DEFAULT" + #twilightforest:slider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:slider" = "DEFAULT" + #twilightforest:slime_beetle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:slime_beetle" = "DEFAULT" + #twilightforest:slime_blob mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:slime_blob" = "DEFAULT" + #twilightforest:snow_guardian mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:snow_guardian" = "DEFAULT" + #twilightforest:snow_queen mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:snow_queen" = "DEFAULT" + #twilightforest:squirrel mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:squirrel" = "DEFAULT" + #twilightforest:stable_ice_core mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:stable_ice_core" = "DEFAULT" + #twilightforest:swarm_spider mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:swarm_spider" = "DEFAULT" + #twilightforest:thrown_block mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:thrown_block" = "DEFAULT" + #twilightforest:thrown_wep mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:thrown_wep" = "DEFAULT" + #twilightforest:tiny_bird mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:tiny_bird" = "DEFAULT" + #twilightforest:tome_bolt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:tome_bolt" = "DEFAULT" + #twilightforest:towerwood_borer mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:towerwood_borer" = "DEFAULT" + #twilightforest:troll mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:troll" = "DEFAULT" + #twilightforest:wand_bolt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:wand_bolt" = "DEFAULT" + #twilightforest:unstable_ice_core mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:unstable_ice_core" = "DEFAULT" + #twilightforest:upper_goblin_knight mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:upper_goblin_knight" = "DEFAULT" + #twilightforest:ur_ghast mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:ur_ghast" = "DEFAULT" + #twilightforest:winter_wolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:winter_wolf" = "DEFAULT" + #twilightforest:wraith mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:wraith" = "DEFAULT" + #twilightforest:yeti mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "twilightforest:yeti" = "DEFAULT" + #tis3d:robot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tis3d:robot" = "DEFAULT" + #farmersdelight:rotten_tomato mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "farmersdelight:rotten_tomato" = "DEFAULT" + #biomesoplenty:boat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "biomesoplenty:boat" = "DEFAULT" + #botania:mana_burst mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:mana_burst" = "DEFAULT" + #botania:pixie mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:pixie" = "DEFAULT" + #botania:flame_ring mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:flame_ring" = "DEFAULT" + #botania:vine_ball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:vine_ball" = "DEFAULT" + #botania:doppleganger mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:doppleganger" = "DEFAULT" + #botania:magic_landmine mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:magic_landmine" = "DEFAULT" + #botania:spark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:spark" = "DEFAULT" + #botania:thrown_item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:thrown_item" = "DEFAULT" + #botania:magic_missile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:magic_missile" = "DEFAULT" + #botania:thorn_chakram mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:thorn_chakram" = "DEFAULT" + #botania:corporea_spark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:corporea_spark" = "DEFAULT" + #botania:ender_air_bottle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:ender_air_bottle" = "DEFAULT" + #botania:pool_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:pool_minecart" = "DEFAULT" + #botania:pink_wither mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:pink_wither" = "DEFAULT" + #botania:player_mover mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:player_mover" = "DEFAULT" + #botania:mana_storm mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:mana_storm" = "DEFAULT" + #botania:babylon_weapon mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:babylon_weapon" = "DEFAULT" + #botania:falling_star mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:falling_star" = "DEFAULT" + #botania:ender_air mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "botania:ender_air" = "DEFAULT" + #tetra:thrown_modular_item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tetra:thrown_modular_item" = "DEFAULT" + #tetra:extractor_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tetra:extractor_projectile" = "DEFAULT" + #tiab:time_accelerator_entity_type mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tiab:time_accelerator_entity_type" = "DEFAULT" + #littlelogistics:barge mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:barge" = "DEFAULT" + #littlelogistics:chunk_loader_barge mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:chunk_loader_barge" = "DEFAULT" + #littlelogistics:fishing_barge mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:fishing_barge" = "DEFAULT" + #littlelogistics:fluid_barge mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:fluid_barge" = "DEFAULT" + #littlelogistics:seater_barge mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:seater_barge" = "DEFAULT" + #littlelogistics:tug mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:tug" = "DEFAULT" + #littlelogistics:energy_tug mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:energy_tug" = "DEFAULT" + #littlelogistics:spring mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:spring" = "DEFAULT" + #littlelogistics:chest_car mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:chest_car" = "DEFAULT" + #littlelogistics:seater_car mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:seater_car" = "DEFAULT" + #littlelogistics:fluid_car mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:fluid_car" = "DEFAULT" + #littlelogistics:chunk_loader_car mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:chunk_loader_car" = "DEFAULT" + #littlelogistics:steam_locomotive mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:steam_locomotive" = "DEFAULT" + #littlelogistics:energy_locomotive mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "littlelogistics:energy_locomotive" = "DEFAULT" + #adorn:seat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "adorn:seat" = "DEFAULT" + #nourished_end:radjelly mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "nourished_end:radjelly" = "DEFAULT" + #nourished_end:cerulean_anglerfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "nourished_end:cerulean_anglerfish" = "DEFAULT" + #nourished_end:flarebug mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "nourished_end:flarebug" = "DEFAULT" + #nourished_end:ringling mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "nourished_end:ringling" = "DEFAULT" + #nourished_end:isopod mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "nourished_end:isopod" = "DEFAULT" + #nourished_end:giant_isopod mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "nourished_end:giant_isopod" = "DEFAULT" + #artifacts:mimic mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "artifacts:mimic" = "DEFAULT" + #untamedwilds:tarantula mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:tarantula" = "DEFAULT" + #untamedwilds:snake mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:snake" = "DEFAULT" + #untamedwilds:softshell_turtle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:softshell_turtle" = "DEFAULT" + #untamedwilds:tortoise mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:tortoise" = "DEFAULT" + #untamedwilds:large_snake mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:large_snake" = "DEFAULT" + #untamedwilds:giant_clam mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:giant_clam" = "DEFAULT" + #untamedwilds:bear mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:bear" = "DEFAULT" + #untamedwilds:big_cat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:big_cat" = "DEFAULT" + #untamedwilds:hippo mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:hippo" = "DEFAULT" + #untamedwilds:aardvark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:aardvark" = "DEFAULT" + #untamedwilds:rhino mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:rhino" = "DEFAULT" + #untamedwilds:hyena mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:hyena" = "DEFAULT" + #untamedwilds:boar mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:boar" = "DEFAULT" + #untamedwilds:bison mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:bison" = "DEFAULT" + #untamedwilds:camel mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:camel" = "DEFAULT" + #untamedwilds:manatee mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:manatee" = "DEFAULT" + #untamedwilds:sunfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:sunfish" = "DEFAULT" + #untamedwilds:trevally mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:trevally" = "DEFAULT" + #untamedwilds:arowana mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:arowana" = "DEFAULT" + #untamedwilds:shark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:shark" = "DEFAULT" + #untamedwilds:football_fish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:football_fish" = "DEFAULT" + #untamedwilds:whale_shark mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:whale_shark" = "DEFAULT" + #untamedwilds:triggerfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:triggerfish" = "DEFAULT" + #untamedwilds:catfish mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:catfish" = "DEFAULT" + #untamedwilds:giant_salamander mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:giant_salamander" = "DEFAULT" + #untamedwilds:newt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "untamedwilds:newt" = "DEFAULT" + #decorative_blocks:dummy mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "decorative_blocks:dummy" = "DEFAULT" + #create_confectionery:little_gingerbread_man mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create_confectionery:little_gingerbread_man" = "DEFAULT" + #blueprint:boat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "blueprint:boat" = "DEFAULT" + #ars_nouveau:spell_proj mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:spell_proj" = "DEFAULT" + #ars_nouveau:fangs mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:fangs" = "DEFAULT" + #ars_nouveau:ally_vex mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:ally_vex" = "DEFAULT" + #ars_nouveau:bookwyrm mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:bookwyrm" = "DEFAULT" + #ars_nouveau:starbuncle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:starbuncle" = "DEFAULT" + #ars_nouveau:whirlisprig mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:whirlisprig" = "DEFAULT" + #ars_nouveau:follow_proj mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:follow_proj" = "DEFAULT" + #ars_nouveau:wixie mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:wixie" = "DEFAULT" + #ars_nouveau:flying_item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:flying_item" = "DEFAULT" + #ars_nouveau:ritual mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:ritual" = "DEFAULT" + #ars_nouveau:wilden_hunter mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:wilden_hunter" = "DEFAULT" + #ars_nouveau:spell_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:spell_arrow" = "DEFAULT" + #ars_nouveau:summon_wolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:summon_wolf" = "DEFAULT" + #ars_nouveau:wilden_stalker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:wilden_stalker" = "DEFAULT" + #ars_nouveau:summon_horse mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:summon_horse" = "DEFAULT" + #ars_nouveau:wilden_guardian mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:wilden_guardian" = "DEFAULT" + #ars_nouveau:an_lightning mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:an_lightning" = "DEFAULT" + #ars_nouveau:dummy mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:dummy" = "DEFAULT" + #ars_nouveau:drygmy mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:drygmy" = "DEFAULT" + #ars_nouveau:orbit mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:orbit" = "DEFAULT" + #ars_nouveau:wilden_boss mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:wilden_boss" = "DEFAULT" + #ars_nouveau:spike mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:spike" = "DEFAULT" + #ars_nouveau:familiar_starbuncle mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:familiar_starbuncle" = "DEFAULT" + #ars_nouveau:familiar_bookwyrm mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:familiar_bookwyrm" = "DEFAULT" + #ars_nouveau:familiar_jabberwog mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:familiar_jabberwog" = "DEFAULT" + #ars_nouveau:familiar_wixie mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:familiar_wixie" = "DEFAULT" + #ars_nouveau:familiar_whirlisprig mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:familiar_whirlisprig" = "DEFAULT" + #ars_nouveau:familiar_drygmy mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:familiar_drygmy" = "DEFAULT" + #ars_nouveau:linger mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:linger" = "DEFAULT" + #ars_nouveau:cascading_weald_walker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:cascading_weald_walker" = "DEFAULT" + #ars_nouveau:blazing_weald_walker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:blazing_weald_walker" = "DEFAULT" + #ars_nouveau:vexing_weald_walker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:vexing_weald_walker" = "DEFAULT" + #ars_nouveau:flourishing_weald_walker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:flourishing_weald_walker" = "DEFAULT" + #ars_nouveau:amethyst_golem mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:amethyst_golem" = "DEFAULT" + #ars_nouveau:summon_skeleton mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:summon_skeleton" = "DEFAULT" + #ars_nouveau:scryer_camera mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:scryer_camera" = "DEFAULT" + #ars_nouveau:enchanted_falling_block mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_nouveau:enchanted_falling_block" = "DEFAULT" + #supplementaries:pearl_marker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:pearl_marker" = "DEFAULT" + #supplementaries:dispenser_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:dispenser_minecart" = "DEFAULT" + #supplementaries:red_merchant mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:red_merchant" = "DEFAULT" + #supplementaries:falling_urn mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:falling_urn" = "DEFAULT" + #supplementaries:falling_ash mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:falling_ash" = "DEFAULT" + #supplementaries:falling_lantern mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:falling_lantern" = "DEFAULT" + #supplementaries:falling_sack mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:falling_sack" = "DEFAULT" + #supplementaries:brick_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:brick_projectile" = "DEFAULT" + #supplementaries:bomb mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:bomb" = "DEFAULT" + #supplementaries:rope_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:rope_arrow" = "DEFAULT" + #supplementaries:slingshot_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "supplementaries:slingshot_projectile" = "DEFAULT" + #cofh_core:knife mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cofh_core:knife" = "DEFAULT" + #cofh_core:electric_arc mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cofh_core:electric_arc" = "DEFAULT" + #cofh_core:electric_field mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cofh_core:electric_field" = "DEFAULT" + #cofh_core:black_hole mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cofh_core:black_hole" = "DEFAULT" + #thermal:basalz mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:basalz" = "DEFAULT" + #thermal:blizz mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:blizz" = "DEFAULT" + #thermal:blitz mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:blitz" = "DEFAULT" + #thermal:basalz_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:basalz_projectile" = "DEFAULT" + #thermal:blizz_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:blizz_projectile" = "DEFAULT" + #thermal:blitz_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:blitz_projectile" = "DEFAULT" + #thermal:explosive_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:explosive_grenade" = "DEFAULT" + #thermal:fire_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:fire_grenade" = "DEFAULT" + #thermal:ice_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:ice_grenade" = "DEFAULT" + #thermal:lightning_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:lightning_grenade" = "DEFAULT" + #thermal:earth_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:earth_grenade" = "DEFAULT" + #thermal:ender_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:ender_grenade" = "DEFAULT" + #thermal:glowstone_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:glowstone_grenade" = "DEFAULT" + #thermal:redstone_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:redstone_grenade" = "DEFAULT" + #thermal:slime_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:slime_grenade" = "DEFAULT" + #thermal:phyto_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:phyto_grenade" = "DEFAULT" + #thermal:nuke_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:nuke_grenade" = "DEFAULT" + #thermal:fire_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:fire_tnt" = "DEFAULT" + #thermal:ice_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:ice_tnt" = "DEFAULT" + #thermal:lightning_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:lightning_tnt" = "DEFAULT" + #thermal:earth_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:earth_tnt" = "DEFAULT" + #thermal:ender_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:ender_tnt" = "DEFAULT" + #thermal:glowstone_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:glowstone_tnt" = "DEFAULT" + #thermal:redstone_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:redstone_tnt" = "DEFAULT" + #thermal:slime_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:slime_tnt" = "DEFAULT" + #thermal:phyto_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:phyto_tnt" = "DEFAULT" + #thermal:nuke_tnt mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "thermal:nuke_tnt" = "DEFAULT" + #tconstruct:fancy_item_frame mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:fancy_item_frame" = "DEFAULT" + #tconstruct:glow_ball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:glow_ball" = "DEFAULT" + #tconstruct:efln_ball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:efln_ball" = "DEFAULT" + #tconstruct:quartz_shuriken mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:quartz_shuriken" = "DEFAULT" + #tconstruct:flint_shuriken mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:flint_shuriken" = "DEFAULT" + #tconstruct:earth_slime mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:earth_slime" = "DEFAULT" + #tconstruct:sky_slime mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:sky_slime" = "DEFAULT" + #tconstruct:ender_slime mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:ender_slime" = "DEFAULT" + #tconstruct:terracube mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:terracube" = "DEFAULT" + #tconstruct:indestructible_item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tconstruct:indestructible_item" = "DEFAULT" + #immersiveengineering:chemthrower_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:chemthrower_shot" = "DEFAULT" + #immersiveengineering:fluorescent_tube mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:fluorescent_tube" = "DEFAULT" + #immersiveengineering:explosive mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:explosive" = "DEFAULT" + #immersiveengineering:railgun_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:railgun_shot" = "DEFAULT" + #immersiveengineering:revolver_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:revolver_shot" = "DEFAULT" + #immersiveengineering:revolver_shot_flare mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:revolver_shot_flare" = "DEFAULT" + #immersiveengineering:revolver_shot_homing mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:revolver_shot_homing" = "DEFAULT" + #immersiveengineering:skyline_hook mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:skyline_hook" = "DEFAULT" + #immersiveengineering:revolver_shot_wolfpack mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:revolver_shot_wolfpack" = "DEFAULT" + #immersiveengineering:cart_woodencrate mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:cart_woodencrate" = "DEFAULT" + #immersiveengineering:cart_reinforcedcrate mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:cart_reinforcedcrate" = "DEFAULT" + #immersiveengineering:cart_woodenbarrel mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:cart_woodenbarrel" = "DEFAULT" + #immersiveengineering:cart_metalbarrel mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:cart_metalbarrel" = "DEFAULT" + #immersiveengineering:sawblade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "immersiveengineering:sawblade" = "DEFAULT" + #ae2:singularity mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ae2:singularity" = "DEFAULT" + #ae2:charged_quartz mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ae2:charged_quartz" = "DEFAULT" + #ae2:growing_crystal mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ae2:growing_crystal" = "DEFAULT" + #ae2:tiny_tnt_primed mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ae2:tiny_tnt_primed" = "DEFAULT" + #archers_paradox:explosive_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:explosive_arrow" = "DEFAULT" + #archers_paradox:quartz_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:quartz_arrow" = "DEFAULT" + #archers_paradox:diamond_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:diamond_arrow" = "DEFAULT" + #archers_paradox:prismarine_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:prismarine_arrow" = "DEFAULT" + #archers_paradox:slime_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:slime_arrow" = "DEFAULT" + #archers_paradox:ender_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:ender_arrow" = "DEFAULT" + #archers_paradox:training_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:training_arrow" = "DEFAULT" + #archers_paradox:challenge_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:challenge_arrow" = "DEFAULT" + #archers_paradox:phantasmal_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:phantasmal_arrow" = "DEFAULT" + #archers_paradox:shulker_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:shulker_arrow" = "DEFAULT" + #archers_paradox:blaze_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:blaze_arrow" = "DEFAULT" + #archers_paradox:frost_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:frost_arrow" = "DEFAULT" + #archers_paradox:lightning_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:lightning_arrow" = "DEFAULT" + #archers_paradox:verdant_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:verdant_arrow" = "DEFAULT" + #archers_paradox:spore_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "archers_paradox:spore_arrow" = "DEFAULT" + #create:super_glue mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:super_glue" = "DEFAULT" + #create:crafting_blueprint mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:crafting_blueprint" = "DEFAULT" + #create:contraption mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:contraption" = "DEFAULT" + #create:stationary_contraption mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:stationary_contraption" = "DEFAULT" + #create:gantry_contraption mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:gantry_contraption" = "DEFAULT" + #create:carriage_contraption mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:carriage_contraption" = "DEFAULT" + #create:potato_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:potato_projectile" = "DEFAULT" + #create:seat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "create:seat" = "DEFAULT" + #reliquary:aphrodite_potion mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:aphrodite_potion" = "DEFAULT" + #reliquary:fertile_potion mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:fertile_potion" = "DEFAULT" + #reliquary:thrown_potion mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:thrown_potion" = "DEFAULT" + #reliquary:blaze_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:blaze_shot" = "DEFAULT" + #reliquary:buster_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:buster_shot" = "DEFAULT" + #reliquary:concussive_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:concussive_shot" = "DEFAULT" + #reliquary:ender_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:ender_shot" = "DEFAULT" + #reliquary:exorcism_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:exorcism_shot" = "DEFAULT" + #reliquary:neutral_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:neutral_shot" = "DEFAULT" + #reliquary:sand_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:sand_shot" = "DEFAULT" + #reliquary:seeker_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:seeker_shot" = "DEFAULT" + #reliquary:storm_shot mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:storm_shot" = "DEFAULT" + #reliquary:ender_staff_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:ender_staff_projectile" = "DEFAULT" + #reliquary:glowing_water mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:glowing_water" = "DEFAULT" + #reliquary:holy_hand_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:holy_hand_grenade" = "DEFAULT" + #reliquary:kraken_slime mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:kraken_slime" = "DEFAULT" + #reliquary:lyssa_hook mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:lyssa_hook" = "DEFAULT" + #reliquary:tipped_arrow mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:tipped_arrow" = "DEFAULT" + #reliquary:special_snowball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "reliquary:special_snowball" = "DEFAULT" + #tetrapak:fragile_falling_block mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "tetrapak:fragile_falling_block" = "DEFAULT" + #malum:natural_spirit mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "malum:natural_spirit" = "DEFAULT" + #malum:mirror_item mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "malum:mirror_item" = "DEFAULT" + #malum:natural_soul mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "malum:natural_soul" = "DEFAULT" + #malum:scythe_boomerang mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "malum:scythe_boomerang" = "DEFAULT" + #malum:runewood_boat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "malum:runewood_boat" = "DEFAULT" + #malum:soulwood_boat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "malum:soulwood_boat" = "DEFAULT" + #quark:stool mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:stool" = "DEFAULT" + #quark:crab mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:crab" = "DEFAULT" + #quark:glass_frame mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:glass_frame" = "DEFAULT" + #quark:stoneling mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:stoneling" = "DEFAULT" + #quark:foxhound mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:foxhound" = "DEFAULT" + #quark:chest_passenger mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:chest_passenger" = "DEFAULT" + #quark:shiba mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:shiba" = "DEFAULT" + #quark:skull_pike mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:skull_pike" = "DEFAULT" + #quark:gravisand mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:gravisand" = "DEFAULT" + #quark:forgotten mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:forgotten" = "DEFAULT" + #quark:toretoise mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:toretoise" = "DEFAULT" + #quark:wraith mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:wraith" = "DEFAULT" + #quark:soul_bead mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:soul_bead" = "DEFAULT" + #quark:parrot_egg mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:parrot_egg" = "DEFAULT" + #quark:frog mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:frog" = "DEFAULT" + #quark:pickarang mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:pickarang" = "DEFAULT" + #quark:totem mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:totem" = "DEFAULT" + #quark:quark_boat mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "quark:quark_boat" = "DEFAULT" + #ars_elemental:siren_entity mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:siren_entity" = "DEFAULT" + #ars_elemental:siren_familiar mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:siren_familiar" = "DEFAULT" + #ars_elemental:firenando_entity mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:firenando_entity" = "DEFAULT" + #ars_elemental:firenando_familiar mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:firenando_familiar" = "DEFAULT" + #ars_elemental:fire_mage mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:fire_mage" = "DEFAULT" + #ars_elemental:water_mage mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:water_mage" = "DEFAULT" + #ars_elemental:air_mage mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:air_mage" = "DEFAULT" + #ars_elemental:earth_mage mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:earth_mage" = "DEFAULT" + #ars_elemental:flashing_weald_walker mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:flashing_weald_walker" = "DEFAULT" + #ars_elemental:summon_skelehorse mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:summon_skelehorse" = "DEFAULT" + #ars_elemental:summon_direwolf mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:summon_direwolf" = "DEFAULT" + #ars_elemental:summon_wskeleton mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:summon_wskeleton" = "DEFAULT" + #ars_elemental:summon_vhex mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:summon_vhex" = "DEFAULT" + #ars_elemental:homing_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:homing_projectile" = "DEFAULT" + #ars_elemental:curved_projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:curved_projectile" = "DEFAULT" + #ars_elemental:linger_magnet mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "ars_elemental:linger_magnet" = "DEFAULT" + #cgm:projectile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cgm:projectile" = "DEFAULT" + #cgm:grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cgm:grenade" = "DEFAULT" + #cgm:missile mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cgm:missile" = "DEFAULT" + #cgm:throwable_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cgm:throwable_grenade" = "DEFAULT" + #cgm:throwable_stun_grenade mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "cgm:throwable_stun_grenade" = "DEFAULT" + #creeperoverhaul:jungle_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:jungle_creeper" = "FALSE" + #creeperoverhaul:bamboo_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:bamboo_creeper" = "FALSE" + #creeperoverhaul:desert_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:desert_creeper" = "FALSE" + #creeperoverhaul:badlands_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:badlands_creeper" = "FALSE" + #creeperoverhaul:hills_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:hills_creeper" = "FALSE" + #creeperoverhaul:savannah_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:savannah_creeper" = "FALSE" + #creeperoverhaul:mushroom_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:mushroom_creeper" = "FALSE" + #creeperoverhaul:swamp_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:swamp_creeper" = "FALSE" + #creeperoverhaul:dripstone_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:dripstone_creeper" = "FALSE" + #creeperoverhaul:cave_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:cave_creeper" = "FALSE" + #creeperoverhaul:dark_oak_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:dark_oak_creeper" = "FALSE" + #creeperoverhaul:spruce_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:spruce_creeper" = "FALSE" + #creeperoverhaul:beach_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:beach_creeper" = "FALSE" + #creeperoverhaul:snowy_creeper mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "creeperoverhaul:snowy_creeper" = "FALSE" + #lootr:lootr_minecart mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "lootr:lootr_minecart" = "DEFAULT" + #slimy_stuff:projectile_viscous_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "slimy_stuff:projectile_viscous_shield" = "DEFAULT" + #slimy_stuff:projectile_slime_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "slimy_stuff:projectile_slime_shield" = "DEFAULT" + #slimy_stuff:projectile_nether_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "slimy_stuff:projectile_nether_shield" = "DEFAULT" + #slimy_stuff:projectile_magma_creamy_shield mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "slimy_stuff:projectile_magma_creamy_shield" = "DEFAULT" + #domesticationinnovation:chain_lightning mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:chain_lightning" = "DEFAULT" + #domesticationinnovation:recall_ball mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:recall_ball" = "DEFAULT" + #domesticationinnovation:feather mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:feather" = "DEFAULT" + #domesticationinnovation:giant_bubble mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:giant_bubble" = "DEFAULT" + #domesticationinnovation:following_jukebox mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:following_jukebox" = "DEFAULT" + #domesticationinnovation:highlighted_block mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:highlighted_block" = "DEFAULT" + #domesticationinnovation:psychic_wall mobGriefing + #Allowed Values: DEFAULT, TRUE, FALSE + "domesticationinnovation:psychic_wall" = "DEFAULT" + diff --git a/mods/apathy-mod.pw.toml b/mods/apathy-mod.pw.toml new file mode 100644 index 0000000..8ece189 --- /dev/null +++ b/mods/apathy-mod.pw.toml @@ -0,0 +1,13 @@ +name = "Apathy Mod" +filename = "apathy-1.18.2-forge-2.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0356ee68b8c32181ec144809f1b46de7fb83d6a6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3800643 +project-id = 499846 diff --git a/mods/global-gamerules.pw.toml b/mods/global-gamerules.pw.toml new file mode 100644 index 0000000..3588d42 --- /dev/null +++ b/mods/global-gamerules.pw.toml @@ -0,0 +1,13 @@ +name = "Global GameRules" +filename = "GlobalGameRules-1.18.1-6.0.0.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "cab86fddbad38baa9c1b9fcd7d6da180c23b15dd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3583363 +project-id = 227657 diff --git a/mods/in-control.pw.toml b/mods/in-control.pw.toml new file mode 100644 index 0000000..b0b1218 --- /dev/null +++ b/mods/in-control.pw.toml @@ -0,0 +1,13 @@ +name = "In Control!" +filename = "incontrol-1.18-6.0.13.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7f3f0d8bea7dc4ed90ce61240f0ab1bd569d3ddc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3884251 +project-id = 257356 diff --git a/mods/more-mobgriefing-options.pw.toml b/mods/more-mobgriefing-options.pw.toml new file mode 100644 index 0000000..e544b78 --- /dev/null +++ b/mods/more-mobgriefing-options.pw.toml @@ -0,0 +1,13 @@ +name = "More MobGriefing Options" +filename = "MoreMobGriefingOptions-1.18.2-2.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8df0ea3c61c99356566f42d0a581037bcae2767f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 3683917 +project-id = 389013 diff --git a/mods/passive-endermen.pw.toml b/mods/passive-endermen.pw.toml deleted file mode 100644 index f927552..0000000 --- a/mods/passive-endermen.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Passive Endermen (Forge)" -filename = "passiveendermen_1.18.2-2.3.jar" -side = "both" - -[download] -hash-format = "sha1" -hash = "b319cd8ede000c0cad4ac12fb6cc80c9b5215838" -mode = "metadata:curseforge" - -[update] -[update.curseforge] -file-id = 3704152 -project-id = 378921