56 lines
2.7 KiB
TOML
56 lines
2.7 KiB
TOML
# ═════════════════════════ Attention ═════════════════════════
|
|
# Don't use this if you don't know what you are doing
|
|
# REASON:
|
|
# This file is a conditional registration. This is harmless in Singleplayer World,
|
|
# but harmful in SERVER because you won't able to join.
|
|
#
|
|
# ══════════════════════════ Detail ═══════════════════════════
|
|
# This file allow you to exclude StoneTypes, MudType, EntrySet, or a Module
|
|
# 1) You can find their names for StoneTypes, MudType, or EntrySet in `everycomp-entries.toml`
|
|
# 2) Leave a value empty to disable that rule.
|
|
#
|
|
# Module - is a Supported Mod, just a modId is sufficient.
|
|
# EntrySet - is a FurnitureType or DecorativeType, it is either Block or Item.
|
|
#
|
|
#
|
|
# NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm - if you want to blacklist, then use everycomp-hazardous.toml
|
|
#
|
|
# ─────────────────────────── Other ───────────────────────────
|
|
# (Abbreviation) RegEx <=> Regular Expression
|
|
#
|
|
[crystaltype]
|
|
#Exclude one or all of Supported-Mod for CrystalType
|
|
# EXAMPLE: blacklist = [
|
|
# "forestry:.*fireproof.*", COMMENT: .* is an RegEx, it exclude all of CrystalType containing "fireproof" from Forestry
|
|
# "biomesoplenty:.*", COMMENT: .* is a RegEx/Advanced-WildCard, it exclude all of CrystalType from Wood Mod for any Module
|
|
# "biomesoplenty:redwood" COMMENT: exclude redwood from Wood Mod for any module
|
|
# ]
|
|
#
|
|
blacklist = []
|
|
|
|
[dusttype]
|
|
#Exclude one or all of Supported-Mod for DustType
|
|
# The example is same as CrystalType's
|
|
blacklist = []
|
|
|
|
[gemtype]
|
|
#Exclude one or all of Supported-Mod for GemType
|
|
# The example is same as CrystalType's
|
|
blacklist = []
|
|
|
|
[metaltype]
|
|
#Exclude one or all of Supported-Mod for MetalType
|
|
# The example is same as CrystalType's
|
|
blacklist = []
|
|
|
|
[entryset]
|
|
#Exclude EntrySet from the module for All of CrystalType, DustType, GemType, MetalType
|
|
# This will only Exclude one specific or all of Gems-Realm's Supported-Blocks or Supported-Items
|
|
# EXAMPLE: blacklist = [
|
|
# "chipped:checkered_trapdoor", COMMENT: chipped:checkered_oak_trapdoor without "oak"
|
|
# "variantvanillablocks:chest", COMMENT: variantvanillablocks:oak_chest without "oak"
|
|
# "chipped:.*" COMMENT: .* is a RegEx/Advanced-WildCard which will exclude all of EntrySets from one Module
|
|
# ]
|
|
#
|
|
blacklist = []
|