Add Queer candle

This commit is contained in:
blryface 2024-09-12 20:33:13 -03:00
parent 6460fcbd87
commit 07cae1cf29
38 changed files with 10 additions and 0 deletions

View File

@ -59,6 +59,9 @@ public class ModBlocks {
public static final Block PROGRESS_BED = registerBlock("progress_bed", public static final Block PROGRESS_BED = registerBlock("progress_bed",
new CustomBedBlock(AbstractBlock.Settings.copy(Blocks.WHITE_BED))); new CustomBedBlock(AbstractBlock.Settings.copy(Blocks.WHITE_BED)));
public static final Block QUEER_CANDLE = registerBlock("queer_candle",
new CandleBlock(AbstractBlock.Settings.copy(Blocks.CANDLE)));
public static final Block GAY_CANDLE = registerBlock("gay_candle", public static final Block GAY_CANDLE = registerBlock("gay_candle",
new CandleBlock(AbstractBlock.Settings.copy(Blocks.CANDLE))); new CandleBlock(AbstractBlock.Settings.copy(Blocks.CANDLE)));
@ -107,6 +110,9 @@ public class ModBlocks {
public static final Block PROGRESS_CANDLE = registerBlock("progress_candle", public static final Block PROGRESS_CANDLE = registerBlock("progress_candle",
new CandleBlock(AbstractBlock.Settings.copy(Blocks.CANDLE))); new CandleBlock(AbstractBlock.Settings.copy(Blocks.CANDLE)));
public static final Block QUEER_CANDLE_CAKE = registerBlock("queer_candle_cake",
new CandleCakeBlock(QUEER_CANDLE, AbstractBlock.Settings.copy(Blocks.CANDLE_CAKE)));
public static final Block GAY_CANDLE_CAKE = registerBlock("gay_candle_cake", public static final Block GAY_CANDLE_CAKE = registerBlock("gay_candle_cake",
new CandleCakeBlock(GAY_CANDLE, AbstractBlock.Settings.copy(Blocks.CANDLE_CAKE))); new CandleCakeBlock(GAY_CANDLE, AbstractBlock.Settings.copy(Blocks.CANDLE_CAKE)));

View File

@ -16,6 +16,7 @@ public class ModBlockTagProvider extends FabricTagProvider.BlockTagProvider {
@Override @Override
protected void configure(RegistryWrapper.WrapperLookup arg) { protected void configure(RegistryWrapper.WrapperLookup arg) {
getOrCreateTagBuilder(BlockTags.CANDLES) getOrCreateTagBuilder(BlockTags.CANDLES)
.add(ModBlocks.QUEER_CANDLE)
.add(ModBlocks.GAY_CANDLE) .add(ModBlocks.GAY_CANDLE)
.add(ModBlocks.ENBY_CANDLE) .add(ModBlocks.ENBY_CANDLE)
.add(ModBlocks.INTERSEX_CANDLE) .add(ModBlocks.INTERSEX_CANDLE)
@ -53,6 +54,7 @@ public class ModBlockTagProvider extends FabricTagProvider.BlockTagProvider {
getOrCreateTagBuilder(BlockTags.CANDLE_CAKES) getOrCreateTagBuilder(BlockTags.CANDLE_CAKES)
.add(ModBlocks.QUEER_CANDLE_CAKE)
.add(ModBlocks.GAY_CANDLE_CAKE) .add(ModBlocks.GAY_CANDLE_CAKE)
.add(ModBlocks.ENBY_CANDLE_CAKE) .add(ModBlocks.ENBY_CANDLE_CAKE)
.add(ModBlocks.INTERSEX_CANDLE_CAKE) .add(ModBlocks.INTERSEX_CANDLE_CAKE)

View File

@ -15,6 +15,7 @@ public class ModModelProvider extends FabricModelProvider {
@Override @Override
public void generateBlockStateModels(BlockStateModelGenerator blockStateModelGenerator) { public void generateBlockStateModels(BlockStateModelGenerator blockStateModelGenerator) {
blockStateModelGenerator.registerCandle(ModBlocks.QUEER_CANDLE, ModBlocks.QUEER_CANDLE_CAKE);
blockStateModelGenerator.registerCandle(ModBlocks.GAY_CANDLE, ModBlocks.GAY_CANDLE_CAKE); blockStateModelGenerator.registerCandle(ModBlocks.GAY_CANDLE, ModBlocks.GAY_CANDLE_CAKE);
blockStateModelGenerator.registerCandle(ModBlocks.ENBY_CANDLE, ModBlocks.ENBY_CANDLE_CAKE); blockStateModelGenerator.registerCandle(ModBlocks.ENBY_CANDLE, ModBlocks.ENBY_CANDLE_CAKE);
blockStateModelGenerator.registerCandle(ModBlocks.INTERSEX_CANDLE, ModBlocks.INTERSEX_CANDLE_CAKE); blockStateModelGenerator.registerCandle(ModBlocks.INTERSEX_CANDLE, ModBlocks.INTERSEX_CANDLE_CAKE);

View File

@ -34,6 +34,7 @@ public class ModItemGroups {
entries.add(ModBlocks.LESBIAN_BED); entries.add(ModBlocks.LESBIAN_BED);
entries.add(ModBlocks.PROGRESS_BED); entries.add(ModBlocks.PROGRESS_BED);
entries.add(ModBlocks.QUEER_CANDLE);
entries.add(ModBlocks.GAY_CANDLE); entries.add(ModBlocks.GAY_CANDLE);
entries.add(ModBlocks.ENBY_CANDLE); entries.add(ModBlocks.ENBY_CANDLE);
entries.add(ModBlocks.INTERSEX_CANDLE); entries.add(ModBlocks.INTERSEX_CANDLE);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 148 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 B