Created Useful Tags (markdown)

simibubi 2022-12-12 19:31:33 +01:00
parent 523fda130a
commit 7af625d048

69
Useful-Tags.md Normal file

@ -0,0 +1,69 @@
Create registers new [Tags](https://minecraft.fandom.com/wiki/Tag) which can be added to blocks, items or fluids using datapacks or packdev tools like KubeJS.
Some of them expose special behaviour within and/or outside of the mod.
## Block Tags
* `create:fan_transparent`
Blocks which will not stop air flows from fans, no matter the voxel shape
Example: Iron Bars
* `create:non_movable` (`forge:relocation_not_supported` also works)
Blocks which cannot be moved by contraptions
* `create:movable_empty_collider`
Blocks which should be able to move on contraptions, but would otherwise be ignored due to their empty collision shape
Example: Cobweb
* `create:passive_boiler_heaters`
Blocks which can provide passive heat to the steam engine multiblock. Not as strong as active Blaze Burners
Example: Campfire
* `create:safe_nbt`
Blocks tagged safe_nbt will keep their nbt data when printed by a Schematicannon
Example: Banners, Signs
* `create:tree_attachments`
Blocks which should be harvested as part of a tree when cut by a Mechanical Saw
Example: Mangrove Propagule
* `create:windmill_sails`
Blocks which can count toward a functional windmill structure
Example: Wool
* `create:wrench_pickup`
Blocks which can be broken and collected very quickly using a Wrench (Sneak-Right-Click)
Example: Rails, Various Redstone components
## Item Tags
* `create:blaze_burner_fuel/regular`
Items which do not have "burn time" for furnaces, but should act as food for the blaze burner (same value as coal)
* `create:blaze_burner_fuel/special`
Items which upon being fed to blaze burners should cause them to be super heated (same value as blaze cakes)
* `create:upright_on_belt`
Items which should render standing up on belts or depots, much like fluid container items
Example: Blaze Cake
* `create:pressurized_air_sources`
Items which can provide air much like a Copper Backtank. Uses the "Air" value in its nbt data to operate
Other Tags added and used primarily for crafting recipes:
* `create:casing`
* `create:create_ingots`
* `create:crushed_ores`
* `create:modded_stripped_logs`
* `create:modded_stripped_wood`
* `create:vanilla_stripped_logs`
* `create:vanilla_stripped_wood`
* `create:sandpaper`
* `create:seats`
* `create:sleepers`
* `create:toolboxes`
* `create:valve_handles`
## Fluid Tags
* `create:bottomless/allow`
Fluids which **can** be drained infinitely using a hose pulley. Requires config to be in allow-list mode
* `create:bottomless/deny`
Fluids which **cannot** be drained infinitely using a hose pulley. Requires config to be in deny-list mode
By default, configs are set to allow-list mode and only water and lava are tagged bottomless/allow