first commit

This commit is contained in:
2025-02-18 15:25:17 +01:00
commit 37cf0e8062
7403 changed files with 1227142 additions and 0 deletions

View File

@ -0,0 +1,48 @@
// Run `/waila reload` to apply changes server-wide.
// Run `/wailac reload` to apply changes to only your client.
//
// Operators:
// @namespace - include objects based on their namespace location
// #tag - include objects based on data pack tags
// /regex/ - include objects based on regular expression
// default - include objects with specific ID
//
// An exclamation mark (!) prefix can be added which negates the pattern.
// Any entries matching previous rules will be removed from it.
// Can be combined with other rule to exclude what matches the rule.
//
// Example:
// @aether - include all block from the aether namespace
// #minecraft:planks - include all blocks in the planks tag
// /.*_ore/ - include all blocks that ends with "_ore"
// minecraft:iron_block - include only the iron block
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
//
// The `#waila:blacklist` tag rule can not be removed
{
blocks: [
"minecraft:barrier",
"minecraft:structure_void",
"#waila:blacklist"
],
blockEntityTypes: [
"#waila:blacklist"
],
entityTypes: [
"minecraft:area_effect_cloud",
"minecraft:experience_orb",
"minecraft:fireball",
"minecraft:firework_rocket",
"minecraft:interaction",
"minecraft:snowball",
"#waila:blacklist"
],
//
// The values below are used internally by WTHIT, you SHOULD NOT modify it!
configVersion: 0,
pluginHash: [
981800043,
1449661236,
2021915756
]
}

View File

@ -0,0 +1,34 @@
// This config controls the category entries collapsed state.
// You shouldn't edit this config by hand.
{
"config.waila.general": false,
"config.waila.overlay": false,
"config.waila.formatting": false,
"config.waila.keybinds": false,
"config.waila.plugin_waila": false,
"config.waila.plugin_harvest": false,
"config.waila.plugin_minecraft": false,
"config.waila.plugin_minecraft.block": false,
"config.waila.plugin_minecraft.entity": false,
"config.waila.plugin_minecraft.pet": false,
"config.waila.plugin_minecraft.horse": false,
"config.waila.plugin_minecraft.panda": false,
"config.waila.plugin_minecraft.bee": false,
"config.waila.plugin_minecraft.effect": false,
"config.waila.plugin_minecraft.jukebox": false,
"config.waila.plugin_minecraft.timer": false,
"config.waila.plugin_minecraft.override": false,
"config.waila.plugin_minecraft.breaking_progress": false,
"config.waila.plugin_minecraft.spawner": false,
"config.waila.plugin_minecraft.plant": false,
"config.waila.plugin_minecraft.redstone": false,
"config.waila.plugin_minecraft.player_head": false,
"config.waila.plugin_minecraft.level": false,
"config.waila.plugin_minecraft.note_block": false,
"config.waila.plugin_minecraft.book": false,
"config.waila.plugin_wailax": false,
"config.waila.plugin_wailax.energy": false,
"config.waila.plugin_wailax.fluid": false,
"config.waila.plugin_wailax.progress": false,
"config.waila.plugin_wailax.item": false
}

5
config/waila/debug.json5 Normal file
View File

@ -0,0 +1,5 @@
// Debug options, restart the game to apply
{
// Show test plugin on plugin toggle screen
showTestPluginToggle: false
}

View File

@ -0,0 +1,32 @@
// Run `/waila reload` to apply changes server-wide.
// Run `/wailac reload` to apply changes to only your client.
//
// Operators:
// @namespace - include objects based on their namespace location
// #tag - include objects based on data pack tags
// /regex/ - include objects based on regular expression
// default - include objects with specific ID
//
// An exclamation mark (!) prefix can be added which negates the pattern.
// Any entries matching previous rules will be removed from it.
// Can be combined with other rule to exclude what matches the rule.
//
// Example:
// @aether - include all block from the aether namespace
// #minecraft:planks - include all blocks in the planks tag
// /.*_ore/ - include all blocks that ends with "_ore"
// minecraft:iron_block - include only the iron block
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
//
// The #waila:extra/energy_blacklist tag rule can not be removed
{
blocks: [
"#waila:extra/energy_blacklist"
],
blockEntityTypes: [
"#waila:extra/energy_blacklist"
],
entityTypes: [
"#waila:extra/energy_blacklist"
]
}

View File

@ -0,0 +1,32 @@
// Run `/waila reload` to apply changes server-wide.
// Run `/wailac reload` to apply changes to only your client.
//
// Operators:
// @namespace - include objects based on their namespace location
// #tag - include objects based on data pack tags
// /regex/ - include objects based on regular expression
// default - include objects with specific ID
//
// An exclamation mark (!) prefix can be added which negates the pattern.
// Any entries matching previous rules will be removed from it.
// Can be combined with other rule to exclude what matches the rule.
//
// Example:
// @aether - include all block from the aether namespace
// #minecraft:planks - include all blocks in the planks tag
// /.*_ore/ - include all blocks that ends with "_ore"
// minecraft:iron_block - include only the iron block
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
//
// The #waila:extra/fluid_blacklist tag rule can not be removed
{
blocks: [
"#waila:extra/fluid_blacklist"
],
blockEntityTypes: [
"#waila:extra/fluid_blacklist"
],
entityTypes: [
"#waila:extra/fluid_blacklist"
]
}

View File

@ -0,0 +1,32 @@
// Run `/waila reload` to apply changes server-wide.
// Run `/wailac reload` to apply changes to only your client.
//
// Operators:
// @namespace - include objects based on their namespace location
// #tag - include objects based on data pack tags
// /regex/ - include objects based on regular expression
// default - include objects with specific ID
//
// An exclamation mark (!) prefix can be added which negates the pattern.
// Any entries matching previous rules will be removed from it.
// Can be combined with other rule to exclude what matches the rule.
//
// Example:
// @aether - include all block from the aether namespace
// #minecraft:planks - include all blocks in the planks tag
// /.*_ore/ - include all blocks that ends with "_ore"
// minecraft:iron_block - include only the iron block
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
//
// The #waila:extra/item_blacklist tag rule can not be removed
{
blocks: [
"#waila:extra/item_blacklist"
],
blockEntityTypes: [
"#waila:extra/item_blacklist"
],
entityTypes: [
"#waila:extra/item_blacklist"
]
}

View File

@ -0,0 +1,32 @@
// Run `/waila reload` to apply changes server-wide.
// Run `/wailac reload` to apply changes to only your client.
//
// Operators:
// @namespace - include objects based on their namespace location
// #tag - include objects based on data pack tags
// /regex/ - include objects based on regular expression
// default - include objects with specific ID
//
// An exclamation mark (!) prefix can be added which negates the pattern.
// Any entries matching previous rules will be removed from it.
// Can be combined with other rule to exclude what matches the rule.
//
// Example:
// @aether - include all block from the aether namespace
// #minecraft:planks - include all blocks in the planks tag
// /.*_ore/ - include all blocks that ends with "_ore"
// minecraft:iron_block - include only the iron block
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
//
// The #waila:extra/progress_blacklist tag rule can not be removed
{
blocks: [
"#waila:extra/progress_blacklist"
],
blockEntityTypes: [
"#waila:extra/progress_blacklist"
],
entityTypes: [
"#waila:extra/progress_blacklist"
]
}

View File

@ -0,0 +1,14 @@
{
"waila:core": true,
"waila:vanilla": true,
"waila:harvest": true,
"waila:extra": true,
"waila:quilt": true,
"waila:test": false,
"waystones:plugin": true,
"waystones:wthit": true,
"waila:fabric": true,
"biomeswevegone:plugin": true,
"cookingforblockheads:wthit": true,
"waila:team_reborn_energy": true
}

111
config/waila/waila.json5 Normal file
View File

@ -0,0 +1,111 @@
{
general: {
// Display Tooltip
// Collect data and render the tooltip
// Default value: [true]
displayTooltip: true,
// Sneaky Details
// Body text is hidden unless sneaking
// Default value: [false]
shiftForDetails: true,
// Hide Sneak Text
// Hide "Sneak for details" text when sneaky details is enabled
// Default value: [false]
hideShiftText: true,
// Display Mode
// Tooltip display behavior
// Toggle: Display keybind will toggle it on and off
// Maintained: Display keybind must be held
// Default value: [TOGGLE]
// Available values: [HOLD_KEY, TOGGLE]
displayMode: "TOGGLE",
// Hide from Player List
// Hide tooltip while the player list is open
// Default value: [true]
hideFromPlayerList: true,
// Hide from Debug
// Hide the tooltip while the debug menu is open
// Default value: [true]
hideFromDebug: true,
// Enable TTS
// Read out block and entity names with the system's text to speech processor
// Default value: [false]
enableTextToSpeech: false,
// Rate Limit
// How many milliseconds the delay between each server request
// Must be at least 250ms
// Default value: [250]
rateLimit: 250
},
overlay: {
position: {
align: {
// Default value: [CENTER]
// Available values: [LEFT, CENTER, RIGHT]
x: "CENTER",
// Default value: [TOP]
// Available values: [TOP, MIDDLE, BOTTOM]
y: "TOP"
},
anchor: {
// Default value: [CENTER]
// Available values: [LEFT, CENTER, RIGHT]
x: "CENTER",
// Default value: [TOP]
// Available values: [TOP, MIDDLE, BOTTOM]
y: "TOP"
},
// X Offset
// X position relative from screen anchor
// Position is affected by scale
// Default value: [0]
x: 0,
// Y Offset
// Y position relative from screen anchor
// Position is affected by scale
// Default value: [0]
y: 5,
// Boss Bars Overlap
// If set to false, the tooltip will move down if there are boss bars visible
// Only affect top-center alignment
// Default value: [false]
bossBarsOverlap: false
},
color: {
// Background Alpha
// Default value: [204]
backgroundAlpha: 0,
// Custom Themes
themes: [],
// Theme
// Default value: [waila:vanilla]
activeTheme: "waila:vanilla"
},
// Scale
// How big the tooltip is
// 1.0 is the default
// Default value: [1.0]
scale: 0.6,
// Overlay FPS
// Lowering the overlay FPS might improve the overall game FPS
// Set to 0 to unlock
// Default value: [30]
fps: 30
},
// Text formatters
formatter: {
// Default value: [§9§o%s]
modName: "§9§o%s",
// Default value: [§f%s]
blockName: "§f%s",
// Default value: [§f%s]
fluidName: "§f%s",
// Default value: [§f%s]
entityName: "§f%s",
// Default value: [§8%s]
registryName: "§8%s"
},
// Internal value, DO NOT TOUCH!
// Default value: [0]
configVersion: 1
}

View File

@ -0,0 +1,301 @@
{
waila: {
// config.waila.plugin_waila.show_blocks
// json5.waila.config.default_value
show_blocks: true,
// config.waila.plugin_waila.show_fluids
// json5.waila.config.default_value
show_fluids: false,
// config.waila.plugin_waila.show_entities
// json5.waila.config.default_value
show_entities: false,
// config.waila.plugin_waila.show_icon
// json5.waila.config.default_value
show_icon: true,
// config.waila.plugin_waila.icon_position
// json5.waila.config.default_value
// json5.waila.config.available_values
icon_position: "MIDDLE",
// config.waila.plugin_waila.show_mod_name
// json5.waila.config.default_value
show_mod_name: true,
// config.waila.plugin_waila.show_item_mod_name
// json5.waila.config.default_value
show_item_mod_name: true,
// config.waila.plugin_waila.show_registry
// json5.waila.config.default_value
show_registry: false
},
minecraft: {
// config.waila.plugin_minecraft.block.position
// json5.waila.config.default_value
"block.position": false,
// config.waila.plugin_minecraft.block.state
// json5.waila.config.default_value
"block.state": false,
// config.waila.plugin_minecraft.entity.item_entity
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"entity.item_entity": true,
// config.waila.plugin_minecraft.entity.position
// json5.waila.config.default_value
"entity.position": false,
// config.waila.plugin_minecraft.entity.health
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"entity.health": true,
// config.waila.plugin_minecraft.entity.absorption
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"entity.absorption": true,
// config.waila.plugin_minecraft.entity.armor
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"entity.armor": true,
// config.waila.plugin_minecraft.entity.compact
// json5.waila.config.default_value
"entity.compact": true,
// config.waila.plugin_minecraft.entity.icon_per_line
// json5.waila.config.default_value
"entity.icon_per_line": 25,
// config.waila.plugin_minecraft.entity.long_health_max
// json5.waila.config.default_value
"entity.long_health_max": 100,
// config.waila.plugin_minecraft.entity.long_armor_max
// json5.waila.config.default_value
"entity.long_armor_max": 100,
// config.waila.plugin_minecraft.pet.owner
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"pet.owner": true,
// config.waila.plugin_minecraft.pet.hide_unknown_owner
// json5.waila.config.default_value
"pet.hide_unknown_owner": false,
// config.waila.plugin_minecraft.horse.jump_height
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"horse.jump_height": true,
// config.waila.plugin_minecraft.horse.speed
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"horse.speed": true,
// config.waila.plugin_minecraft.panda.genes
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"panda.genes": true,
// config.waila.plugin_minecraft.bee.hive_pos
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"bee.hive_pos": true,
// config.waila.plugin_minecraft.bee.hive_honey_level
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"bee.hive_honey_level": true,
// config.waila.plugin_minecraft.bee.hive_occupants
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"bee.hive_occupants": true,
// config.waila.plugin_minecraft.effect.beacon
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"effect.beacon": true,
// config.waila.plugin_minecraft.effect.mob
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"effect.mob": true,
// config.waila.plugin_minecraft.effect.hidden_mob
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"effect.hidden_mob": false,
// config.waila.plugin_minecraft.jukebox.record
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"jukebox.record": true,
// config.waila.plugin_minecraft.timer.grow
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"timer.grow": true,
// config.waila.plugin_minecraft.timer.breed
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"timer.breed": true,
// config.waila.plugin_minecraft.override.invisible_entity
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"override.invisible_entity": true,
// config.waila.plugin_minecraft.override.trapped_chest
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"override.trapped_chest": true,
// config.waila.plugin_minecraft.override.powder_snow
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"override.powder_snow": true,
// config.waila.plugin_minecraft.override.infested
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"override.infested": true,
// config.waila.plugin_minecraft.override.vehicle
// json5.waila.config.default_value
"override.vehicle": true,
// config.waila.plugin_minecraft.breaking_progress.enabled
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"breaking_progress.enabled": true,
// config.waila.plugin_minecraft.breaking_progress.color
// json5.waila.config.default_value
"breaking_progress.color": -1426063361,
// config.waila.plugin_minecraft.breaking_progress.bottom_only
// json5.waila.config.default_value
"breaking_progress.bottom_only": false,
// config.waila.plugin_minecraft.spawner.type
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"spawner.type": true,
// config.waila.plugin_minecraft.plant.crop_progress
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"plant.crop_progress": true,
// config.waila.plugin_minecraft.plant.crop_growable
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"plant.crop_growable": true,
// config.waila.plugin_minecraft.plant.tree_growable
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"plant.tree_growable": true,
// config.waila.plugin_minecraft.redstone.lever
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"redstone.lever": true,
// config.waila.plugin_minecraft.redstone.repeater
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"redstone.repeater": true,
// config.waila.plugin_minecraft.redstone.comparator
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"redstone.comparator": true,
// config.waila.plugin_minecraft.redstone.level
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"redstone.level": true,
// config.waila.plugin_minecraft.player_head.name
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"player_head.name": true,
// config.waila.plugin_minecraft.level.composter
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"level.composter": true,
// config.waila.plugin_minecraft.note_block.type
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
"note_block.type": true,
// config.waila.plugin_minecraft.note_block.note
// json5.waila.config.default_value
// json5.waila.config.available_values
"note_block.note": "SHARP",
// config.waila.plugin_minecraft.note_block.int_value
// json5.waila.config.default_value
"note_block.int_value": false,
// config.waila.plugin_minecraft.book.bookshelf
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"book.bookshelf": true,
// config.waila.plugin_minecraft.book.enchantment
// json5.waila.config.default_value
// json5.waila.config.available_values
"book.enchantment": "CYCLE",
// config.waila.plugin_minecraft.book.enchantment_cycle_timing
// json5.waila.config.default_value
"book.enchantment_cycle_timing": 500,
// config.waila.plugin_minecraft.book.written
// json5.waila.config.default_value
"book.written": true
},
harvest: {
// config.waila.plugin_harvest.enabled
// json5.waila.config.plugin.merged
// json5.waila.config.default_value
enabled: true,
// config.waila.plugin_harvest.display_mode
// json5.waila.config.default_value
// json5.waila.config.available_values
display_mode: "CLASSIC_MINIMAL",
// config.waila.plugin_harvest.creative
// json5.waila.config.default_value
creative: false
},
wailax: {
// config.waila.plugin_wailax.energy.enabled_block
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"energy.enabled_block": true,
// config.waila.plugin_wailax.energy.enabled_entity
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"energy.enabled_entity": true,
// config.waila.plugin_wailax.energy.blacklist
// json5.waila.config.plugin.custom_file
// C:\Users\Brandon\curseforge\minecraft\Instances\Cobblemon Star Academy (2)\config\waila\extra\energy_blacklist.json5
"energy.blacklist": null,
// config.waila.plugin_wailax.fluid.enabled_block
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"fluid.enabled_block": true,
// config.waila.plugin_wailax.fluid.enabled_entity
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"fluid.enabled_entity": true,
// config.waila.plugin_wailax.fluid.display_unit
// json5.waila.config.default_value
// json5.waila.config.available_values
"fluid.display_unit": "MILLIBUCKETS",
// config.waila.plugin_wailax.fluid.blacklist
// json5.waila.config.plugin.custom_file
// C:\Users\Brandon\curseforge\minecraft\Instances\Cobblemon Star Academy (2)\config\waila\extra\fluid_blacklist.json5
"fluid.blacklist": null,
// config.waila.plugin_wailax.progress.enabled_block
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"progress.enabled_block": true,
// config.waila.plugin_wailax.progress.enabled_entity
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"progress.enabled_entity": true,
// config.waila.plugin_wailax.progress.blacklist
// json5.waila.config.plugin.custom_file
// C:\Users\Brandon\curseforge\minecraft\Instances\Cobblemon Star Academy (2)\config\waila\extra\progress_blacklist.json5
"progress.blacklist": null,
// config.waila.plugin_wailax.item.enabled_block
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"item.enabled_block": true,
// config.waila.plugin_wailax.item.enabled_entity
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"item.enabled_entity": true,
// config.waila.plugin_wailax.item.nbt
// json5.waila.config.plugin.server_required
// json5.waila.config.default_value
"item.nbt": true,
// config.waila.plugin_wailax.item.display_mode
// json5.waila.config.default_value
// json5.waila.config.available_values
"item.display_mode": "DYNAMIC",
// config.waila.plugin_wailax.item.max_height
// json5.waila.config.default_value
"item.max_height": 3,
// config.waila.plugin_wailax.item.sort_by_count
// json5.waila.config.default_value
"item.sort_by_count": true,
// config.waila.plugin_wailax.item.grid_mode_scale
// json5.waila.config.default_value
"item.grid_mode_scale": 1.0,
// config.waila.plugin_wailax.item.blacklist
// json5.waila.config.plugin.custom_file
// C:\Users\Brandon\curseforge\minecraft\Instances\Cobblemon Star Academy (2)\config\waila\extra\item_blacklist.json5
"item.blacklist": null
}
}