Skip to content

Commit

Permalink
Run datagen.
Browse files Browse the repository at this point in the history
  • Loading branch information
Provismet committed Jan 26, 2025
1 parent d435c35 commit 618348f
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/generated/assets/combat-plus-core/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
"death.attack.lethal_poison": "%1$s couldn't find an antidote",
"death.attack.lethal_poison.item": "%1$s succumbed to poison whilst fighting %2$s using %3$s",
"death.attack.lethal_poison.player": "%1$s succumbed to poison whilst fighting %2$s",
"enchantment.combat-plus.logger": "Example Enchantment",
"enchantment.combat-plus.logger": "Example Weapon Enchantment",
"enchantment.combat-plus.logger.desc": "Logs attacks to the console for debugging purposes.",
"enchantment.combat-plus.logger.description": "Logs attacks to the console for debugging purposes.",
"enchantment.combat-plus.shield_logger": "Example Shield Enchantment",
"enchantment.combat-plus.shield_logger.desc": "Logs to the console when blocking an attack for debugging purposes.",
"enchantment.combat-plus.shield_logger.description": "Logs to the console when blocking an attack for debugging purposes.",
"gamerule.category.combat-plus": "Combat+",
"gamerule.keepLoyaltyTridents": "Keep Loyalty Tridents",
"gamerule.lethalPoison": "Lethal Poison",
"gamerule.pvpEnchantmentModifier": "PvP Enchantment Modifier",
"gamerule.pvpEnchantmentModifier.description": "Modifies the effectiveness of certain damaging enchantments when used against players.",
"gamerule.sweepingRequiresEnchantment": "Sweeping Requires Enchantment",
"item.combat-plus.debug_shield": "Example Shield",
"item.combat-plus.debugger": "Example Weapon",
"resourcepack.combat-plus.enchanted_numbers": "Enchantment Numbers",
"resourcepack.combat-plus.enchanted_numbers.description": "Numerals are now numbers",
Expand Down
4 changes: 4 additions & 0 deletions src/main/generated/data/c/tags/item/enchantables.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
{
"id": "#combat-plus:enchantable/offhand",
"required": false
},
{
"id": "#combat-plus:enchantable/shield",
"required": false
}
]
}
8 changes: 8 additions & 0 deletions src/main/generated/data/c/tags/item/tools/shield.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"values": [
{
"id": "combat-plus:debug_shield",
"required": false
}
]
}
35 changes: 35 additions & 0 deletions src/main/generated/data/combat-plus/enchantment/shield_logger.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"fabric:load_conditions": [
{
"condition": "lilylib:developer_mode"
}
],
"anvil_cost": 1,
"description": {
"translate": "enchantment.combat-plus.shield_logger"
},
"effects": {
"combat-plus:post_block": [
{
"effect": {
"type": "combat-plus:code_execution_double_entity",
"function": "combat-plus:log-block"
}
}
]
},
"max_cost": {
"base": 1,
"per_level_above_first": 0
},
"max_level": 1,
"min_cost": {
"base": 1,
"per_level_above_first": 0
},
"slots": [
"hand"
],
"supported_items": "#combat-plus:enchantable/shield",
"weight": 1
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"values": [
{
"id": "#combat-plus:enchantable/shield_primary",
"required": false
},
{
"id": "#c:tools/shield",
"required": false
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"minecraft:shield"
]
}

0 comments on commit 618348f

Please sign in to comment.