diff --git a/color_doors.js b/color_doors.js new file mode 100644 index 000000000..f9f68ca84 --- /dev/null +++ b/color_doors.js @@ -0,0 +1,56 @@ + +'use strict'; + +const fs = require('fs') +const root_main = './src/main/resources/assets/overdrive_that_matters/textures/block/decorative/' +const child_process = require('child_process') + +const colors = [ + ['orange', [245, 116, 16]], + ['magenta', [186, 63, 175]], + ['light_blue', [59, 180, 219]], + ['yellow', [252, 199, 36]], + ['lime', [111, 187, 24]], + ['pink', [243, 139, 170]], + ['gray', [62, 66, 70]], + ['light_gray', [140, 140, 131]], + ['cyan', [22, 134, 145]], + ['purple', [116, 38, 169]], + ['blue', [51, 53, 155]], + ['brown', [114, 71, 40]], + ['green', [84, 109, 28]], + ['red', [156, 37, 34]], + ['black', [31, 31, 35]], + ['white', [235, 235, 235]], +] + +process.stderr.setMaxListeners(40) +process.stdout.setMaxListeners(40); + +(async function() { + for (const [base, overlay, nameBase] of [['tritanium_door_base_top', 'tritanium_door_color_top', 'tritanium_door_top'], ['tritanium_door_base_bottom', 'tritanium_door_color_bottom', 'tritanium_door_bottom']]) { + for (const [name, rgb] of colors) { + const magick = child_process.spawn('magick', [ + 'convert', + + `${root_main}${base}.png`, + + '(', + `${root_main}${overlay}.png`, + '-size', '16x16', + `xc:rgb(${rgb[0]}, ${rgb[1]}, ${rgb[2]})`, + '-channel', 'rgb', + '-compose', 'Multiply', + '-composite', + ')', + + '-compose', 'Over', + '-composite', + + `${root_main}/${nameBase}_${name}.png`]) + + magick.stdout.pipe(process.stdout) + magick.stderr.pipe(process.stderr) + } + } +})() diff --git a/colorizer.js b/colorizer.js index 1498b36d0..e4add9acf 100644 --- a/colorizer.js +++ b/colorizer.js @@ -70,6 +70,11 @@ async function size(path) { const splitted = texture.split('/') const last = splitted.pop() + + if (last.indexOf('_white') == -1) { + colors.push(['white', [235, 235, 235]]) + } + const combined = splitted.join('/') const basedir = `${root_main}${combined}` @@ -107,6 +112,11 @@ async function size(path) { const splitted = textureColor.split('/') const last = splitted.pop() + + if (last.indexOf('_white') == -1) { + colors.push(['white', [235, 235, 235]]) + } + const combined = splitted.join('/') const basedir = `${root_main}${combined}` diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/DataGen.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/DataGen.kt index bfb02748d..6ce2c6ec4 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/DataGen.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/DataGen.kt @@ -437,7 +437,9 @@ object DataGen { AddEnglishLanguage(languageProvider) - door(MBlocks.TRITANIUM_DOOR, modLocation("block/decorative/tritanium_door_top"), modLocation("block/decorative/tritanium_door_bottom")) + for ((color, door) in MBlocks.TRITANIUM_DOOR) + door(door, modLocation("block/decorative/tritanium_door_top${color?.name?.lowercase()?.let { "_$it" } ?: ""}"), modLocation("block/decorative/tritanium_door_bottom${color?.name?.lowercase()?.let { "_$it" } ?: ""}")) + trapdoor(MBlocks.TRITANIUM_TRAPDOOR, modLocation("block/decorative/tritanium_trapdoor")) addBlockModels(blockModelProvider) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/items/ItemModels.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/items/ItemModels.kt index a6be9a572..f42d04e11 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/items/ItemModels.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/items/ItemModels.kt @@ -95,7 +95,7 @@ fun addItemModels(provider: MatteryItemModelProvider) { provider.generated(MItems.MATTER_DUST) - provider.generated(MItems.TRITANIUM_DOOR) + provider.generated(MItems.TRITANIUM_DOOR.values) provider.block(MItems.TRITANIUM_TRAPDOOR, "tritanium_trapdoor_bottom") for (item in MRegistry.CARGO_CRATES.allItems.values) { diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/lang/English.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/lang/English.kt index 197170eaf..fcbe2fab4 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/lang/English.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/lang/English.kt @@ -29,6 +29,11 @@ private fun decoratives(provider: MatteryLanguageProvider) { add(MRegistry.TRITANIUM_PRESSURE_PLATE.getBlock(color), "$name Tritanium Pressure Plate") add(MRegistry.TRITANIUM_PRESSURE_PLATE.getBlock(color), "description0", "Activates only if player steps on it") add(MRegistry.TRITANIUM_PRESSURE_PLATE.getBlock(color), "description1", "High blast resistance") + + add(MBlocks.TRITANIUM_DOOR[color]!!, "$name Tritanium Door") + add(MBlocks.TRITANIUM_DOOR[color]!!, "description0", "High blast resistance door with redstone latch...") + add(MBlocks.TRITANIUM_DOOR[color]!!, "description1", "...feeling safe now?") + add(MBlocks.TRITANIUM_DOOR[color]!!, "description2", "This one is painted $name") } add(MRegistry.TRITANIUM_PRESSURE_PLATE.block, "Tritanium Pressure Plate") @@ -409,9 +414,9 @@ private fun blocks(provider: MatteryLanguageProvider) { add(MBlocks.DANGER_STRIPE_BLOCK, "Danger Stripes") add(MBlocks.METAL_BEAM, "Metal Beam") - add(MBlocks.TRITANIUM_DOOR, "Tritanium Door") - add(MBlocks.TRITANIUM_DOOR, "description0", "High blast resistance door with redstone latch...") - add(MBlocks.TRITANIUM_DOOR, "description1", "...feeling safe now?") + add(MBlocks.TRITANIUM_DOOR[null]!!, "Tritanium Door") + add(MBlocks.TRITANIUM_DOOR[null]!!, "description0", "High blast resistance door with redstone latch...") + add(MBlocks.TRITANIUM_DOOR[null]!!, "description1", "...feeling safe now?") add(MBlocks.TRITANIUM_TRAPDOOR, "Tritanium Trapdoor") add(MBlocks.TRITANIUM_TRAPDOOR, "description0", "High blast resistance door with redstone latch...") diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootTablesData.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootTablesData.kt index e9fbd69c0..04e3e9ab1 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootTablesData.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/loot/LootTablesData.kt @@ -71,14 +71,16 @@ fun addLootTables(lootTables: LootTables) { condition(ExplosionCondition.survivesExplosion()) } - lootTables.block(MBlocks.TRITANIUM_DOOR) { - item(MBlocks.TRITANIUM_DOOR) { - blockStateCondition(MBlocks.TRITANIUM_DOOR) { - this[BlockStateProperties.DOUBLE_BLOCK_HALF] = DoubleBlockHalf.LOWER + for (door in MBlocks.TRITANIUM_DOOR.values) { + lootTables.block(door) { + item(door) { + blockStateCondition(door) { + this[BlockStateProperties.DOUBLE_BLOCK_HALF] = DoubleBlockHalf.LOWER + } } - } - condition(ExplosionCondition.survivesExplosion()) + condition(ExplosionCondition.survivesExplosion()) + } } lootTables.builder(LootContextParamSets.ADVANCEMENT_ENTITY, modLocation("research_all_android")) { diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt index 36db6f3e8..7878eda20 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt @@ -273,13 +273,21 @@ fun addDecorativesRecipes(provider: MatteryRecipeProvider, consumer: Consumer + object : DoorBlock(Properties.of(Material.METAL, color ?: DyeColor.LIGHT_BLUE).explosionResistance(80f).noOcclusion().destroyTime(3f).requiresCorrectToolForDrops()) { override fun appendHoverText( p_49816_: ItemStack, p_49817_: BlockGetter?, @@ -139,8 +139,13 @@ object MBlocks { super.appendHoverText(p_49816_, p_49817_, p_49818_, p_49819_) p_49818_.add(TranslatableComponent("$descriptionId.description0").withStyle(ChatFormatting.DARK_GRAY)) p_49818_.add(TranslatableComponent("$descriptionId.description1").withStyle(ChatFormatting.DARK_GRAY)) + + if (color != null) { + p_49818_.add(TranslatableComponent("$descriptionId.description2").withStyle(ChatFormatting.DARK_GRAY)) + } } - } } + } + } val TRITANIUM_TRAPDOOR: Block by registry.register(MNames.TRITANIUM_TRAPDOOR) { object : TrapDoorBlock(Properties.of(Material.METAL, DyeColor.LIGHT_BLUE).explosionResistance(80f).noOcclusion().destroyTime(3f).requiresCorrectToolForDrops()) { diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt index 07eb2f9a5..97b2d94b7 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt @@ -233,7 +233,7 @@ object MItems { val DANGER_STRIPE_BLOCK: Item by registry.register(MNames.DANGER_STRIPE_BLOCK) { BlockItem(MBlocks.DANGER_STRIPE_BLOCK, DEFAULT_PROPERTIES_DECORATIVE) } val METAL_BEAM: Item by registry.register(MNames.METAL_BEAM) { BlockItem(MBlocks.METAL_BEAM, DEFAULT_PROPERTIES_DECORATIVE) } - val TRITANIUM_DOOR: Item by registry.register(MNames.TRITANIUM_DOOR) { DoubleHighBlockItem(MBlocks.TRITANIUM_DOOR, DEFAULT_PROPERTIES_DECORATIVE) } + val TRITANIUM_DOOR = registry.allColored(MNames.TRITANIUM_DOOR) { color, _ -> DoubleHighBlockItem(MBlocks.TRITANIUM_DOOR[color]!!, DEFAULT_PROPERTIES_DECORATIVE) } val TRITANIUM_TRAPDOOR: Item by registry.register(MNames.TRITANIUM_TRAPDOOR) { BlockItem(MBlocks.TRITANIUM_TRAPDOOR, DEFAULT_PROPERTIES_DECORATIVE) } init { diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_black.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_black.png new file mode 100644 index 000000000..26697a887 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_black.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_blue.png new file mode 100644 index 000000000..ca144c217 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_blue.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_brown.png new file mode 100644 index 000000000..807bd62f2 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_brown.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_cyan.png new file mode 100644 index 000000000..812300126 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_cyan.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_gray.png new file mode 100644 index 000000000..3e28747c3 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_gray.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_green.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_green.png new file mode 100644 index 000000000..5253618cc Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_green.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_light_blue.png new file mode 100644 index 000000000..cfa4429cc Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_light_blue.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_light_gray.png new file mode 100644 index 000000000..41cf66c17 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_light_gray.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_lime.png new file mode 100644 index 000000000..8b6f7ac8a Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_lime.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_magenta.png new file mode 100644 index 000000000..a3fae434a Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_magenta.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_orange.png new file mode 100644 index 000000000..de3ffcb5f Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_orange.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_pink.png new file mode 100644 index 000000000..9a79c5815 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_pink.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_purple.png new file mode 100644 index 000000000..560863d21 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_purple.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_red.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_red.png new file mode 100644 index 000000000..bc12ffca4 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_red.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_white.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_white.png new file mode 100644 index 000000000..11daf014a Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_white.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_yellow.png new file mode 100644 index 000000000..c807322d7 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_bottom_yellow.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_black.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_black.png new file mode 100644 index 000000000..f03400172 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_black.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_blue.png new file mode 100644 index 000000000..527ef6199 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_blue.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_brown.png new file mode 100644 index 000000000..c0b9d6571 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_brown.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_cyan.png new file mode 100644 index 000000000..81059425c Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_cyan.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_gray.png new file mode 100644 index 000000000..b63aee107 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_gray.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_green.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_green.png new file mode 100644 index 000000000..6e829a6e6 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_green.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_light_blue.png new file mode 100644 index 000000000..22bafb9fb Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_light_blue.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_light_gray.png new file mode 100644 index 000000000..36d78bd2c Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_light_gray.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_lime.png new file mode 100644 index 000000000..c8ad25378 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_lime.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_magenta.png new file mode 100644 index 000000000..abfe32060 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_magenta.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_orange.png new file mode 100644 index 000000000..3928aa829 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_orange.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_pink.png new file mode 100644 index 000000000..708b63d0b Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_pink.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_purple.png new file mode 100644 index 000000000..70a4c12dd Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_purple.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_red.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_red.png new file mode 100644 index 000000000..faace0cda Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_red.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_white.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_white.png new file mode 100644 index 000000000..1edb102f1 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_white.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_yellow.png new file mode 100644 index 000000000..d8fdfe89b Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/block/decorative/tritanium_door_top_yellow.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_black.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_black.png new file mode 100644 index 000000000..2b2a47076 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_black.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_blue.png new file mode 100644 index 000000000..960ff7460 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_blue.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_brown.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_brown.png new file mode 100644 index 000000000..a0582a781 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_brown.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_colorless.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_colorless.png new file mode 100644 index 000000000..cabb87734 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_colorless.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_cyan.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_cyan.png new file mode 100644 index 000000000..1527d2049 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_cyan.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_gray.png new file mode 100644 index 000000000..9b2e42fc9 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_gray.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_green.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_green.png new file mode 100644 index 000000000..4fabc1801 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_green.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_light_blue.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_light_blue.png new file mode 100644 index 000000000..4066370d9 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_light_blue.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_light_gray.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_light_gray.png new file mode 100644 index 000000000..b6437c41d Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_light_gray.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_lime.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_lime.png new file mode 100644 index 000000000..a980e3ed9 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_lime.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_magenta.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_magenta.png new file mode 100644 index 000000000..58ce0d7e9 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_magenta.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_orange.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_orange.png new file mode 100644 index 000000000..f111400a2 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_orange.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_overlay.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_overlay.png new file mode 100644 index 000000000..adcc80e76 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_overlay.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_pink.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_pink.png new file mode 100644 index 000000000..786597e3f Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_pink.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_purple.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_purple.png new file mode 100644 index 000000000..9f5a774e7 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_purple.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_red.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_red.png new file mode 100644 index 000000000..7012aa289 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_red.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_white.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_white.png new file mode 100644 index 000000000..53720e627 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_white.png differ diff --git a/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_yellow.png b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_yellow.png new file mode 100644 index 000000000..b5bb35587 Binary files /dev/null and b/src/main/resources/assets/overdrive_that_matters/textures/item/tritanium_door_yellow.png differ