Skip to content

Commit 66aff36

Browse files
committed
Extend mod support
Added mod support for TerraFirmaCraft (closes #72), Bone Torch, and Aquatic Torches (closes #38)
1 parent c4bd6f2 commit 66aff36

15 files changed

Lines changed: 32 additions & 7 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
- **Added support for Minecraft 1.21.9** 🥉
22
- Added Copper Torches and Copper Lanterns to light level 15 items
33
- Added Firefly Bushes to light level 3 items
4+
- Added mod support for [TerraFirmaCraft](https://modrinth.com/project/JaCEZUhg) (closes [#72](https://github.com/Tschipcraft/dynamiclights/issues/72)), [Bone Torch](https://www.curseforge.com/minecraft/mc-mods/sbm-bone-torch), and [Aquatic Torches](https://modrinth.com/project/yJR377od) (closes [#38](https://github.com/Tschipcraft/dynamiclights/issues/38))

data/dynamiclights/tags/entity_type/light_level/6.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"values": [
55
"minecraft:tnt",
66
"minecraft:shulker_bullet",
7-
{"id": "minecraft:allay", "required": false}
7+
{"id": "minecraft:allay", "required": false},
8+
{"id": "tfc:glow_arrow", "required": false}
89
]
910
}

data/dynamiclights/tags/entity_type/light_level/9.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"minecraft:spectral_arrow",
99
"minecraft:firework_rocket",
1010
"minecraft:wither_skull",
11-
"minecraft:small_fireball"
11+
"minecraft:small_fireball",
12+
{"id": "tfc:octopoteuthis", "required": false}
1213
]
1314
}

data/dynamiclights/tags/entity_types/light_level/6.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"values": [
55
"minecraft:tnt",
66
"minecraft:shulker_bullet",
7-
{"id": "minecraft:allay", "required": false}
7+
{"id": "minecraft:allay", "required": false},
8+
{"id": "tfc:glow_arrow", "required": false}
89
]
910
}

data/dynamiclights/tags/entity_types/light_level/9.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"minecraft:spectral_arrow",
99
"minecraft:firework_rocket",
1010
"minecraft:wither_skull",
11-
"minecraft:small_fireball"
11+
"minecraft:small_fireball",
12+
{"id": "tfc:octopoteuthis", "required": false}
1213
]
1314
}

data/dynamiclights/tags/item/mod_support/light_level/15.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
{"id": "#c:lanterns", "required": false},
66
{"id": "#c:lava_buckets", "required": false},
77
{"id": "#c:buckets/lava", "required": false},
8+
{"id": "aquatictorches:aquatic_torch", "required": false},
9+
{"id": "bonetorch:bonetorch", "required": false},
10+
{"id": "tfc:torch", "required": false},
811
{"id": "wardrobe:lantern_on_a_stick", "required": false}
912
]
1013
}

data/dynamiclights/tags/item/mod_support/light_level/6.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"//comment": "Items listed here will emit light level 6 - Intended to get populated by mods",
33
"replace": false,
44
"values": [
5+
{"id": "tfc:glow_arrow", "required": false}
56
]
67
}

data/dynamiclights/tags/item/mod_support/light_level/9.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
{"id": "#c:dusts/glowstone", "required": false},
88
{"id": "#c:rods/blaze", "required": false},
99
{"id": "#c:obsidians/crying", "required": false},
10+
{"id": "bonetorch:soul_bonetorch", "required": false},
11+
{"id": "tfc:sea_pickle", "required": false},
1012
{"id": "wardrobe:soul_lantern_on_a_stick", "required": false}
1113
]
1214
}

data/dynamiclights/tags/item/mod_support/water_sensitive/turn_off.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"//comment": "Items listed here will only emit light outside water - Intended to get populated by mods",
33
"replace": false,
44
"values": [
5-
{"id": "#c:lava_buckets", "required": false}
5+
{"id": "#c:lava_buckets", "required": false},
6+
{"id": "bonetorch:bonetorch", "required": false},
7+
{"id": "bonetorch:soul_bonetorch", "required": false},
8+
{"id": "tfc:torch", "required": false}
69
]
710
}

data/dynamiclights/tags/item/mod_support/water_sensitive/turn_on.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"//comment": "Items listed here will only emit light inside water - Intended to get populated by mods",
33
"replace": false,
44
"values": [
5+
{"id": "tfc:sea_pickle", "required": false}
56
]
67
}

0 commit comments

Comments
 (0)