@@ -99,14 +99,14 @@ public class ModBlocks {
99
99
public static final DeferredItem <BlockItem > BRITTLE_ICE_ITEM =
100
100
register ("brittle_ice" , BRITTLE_ICE );
101
101
102
- @ I18n (en_us = "wood " , zh_cn = "羊毛" , zh_tw = "羊毛" )
103
- public static final DeferredBlock <Block > WOOD = register ("wood " , BlockBehaviour .Properties .of ()
102
+ @ I18n (en_us = "wool " , zh_cn = "羊毛" , zh_tw = "羊毛" )
103
+ public static final DeferredBlock <Block > WOOL = register ("wool " , BlockBehaviour .Properties .of ()
104
104
.instrument (NoteBlockInstrument .GUITAR )
105
105
.strength (0.8F )
106
106
.sound (SoundType .WOOL )
107
107
.ignitedByLava ());
108
108
@ BasicBlockItem
109
- public static final DeferredItem <BlockItem > WOOL_ITEM = register ("wood " , WOOD );
109
+ public static final DeferredItem <BlockItem > WOOL_ITEM = register ("wool " , WOOL );
110
110
111
111
@ I18n (en_us = "carpet" , zh_cn = "地毯" , zh_tw = "地毯" )
112
112
public static final DeferredBlock <CarpetBlock > CARPET =
@@ -175,6 +175,30 @@ public class ModBlocks {
175
175
@ I18n (en_us = "Azalea Planks" , zh_cn = "杜鹃木木板" , zh_tw = "杜鵑木材" )
176
176
public static final DeferredBlock <Block > AZALEA_PLANKS =
177
177
register ("azalea_planks" , Block ::new , BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_PLANKS ));
178
+ @ I18n (en_us = "Azalea Button" , zh_cn = "杜鹃木按钮" , zh_tw = "杜鵑木按鈕" )
179
+ public static final DeferredBlock <ButtonBlock > AZALEA_BUTTON =
180
+ register ("azalea_button" , props -> new ButtonBlock (ModBlockSetTypes .AZALEA , 30 , props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_BUTTON ));
181
+ @ I18n (en_us = "Azalea Fence" , zh_cn = "杜鹃木栅栏" , zh_tw = "杜鵑木柵欄" )
182
+ public static final DeferredBlock <FenceBlock > AZALEA_FENCE =
183
+ register ("azalea_fence" , FenceBlock ::new , BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_FENCE ));
184
+ @ I18n (en_us = "Azalea Fence Gate" , zh_cn = "杜鹃木栅栏门" , zh_tw = "杜鵑木柵欄門" )
185
+ public static final DeferredBlock <FenceGateBlock > AZALEA_FENCE_GATE =
186
+ register ("azalea_fence_gate" , props -> new FenceGateBlock (ModWoodTypes .AZALEA , props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_FENCE_GATE ));
187
+ @ I18n (en_us = "Azalea Pressure Plate" , zh_cn = "杜鹃木压力板" , zh_tw = "杜鵑木压力板" )
188
+ public static final DeferredBlock <PressurePlateBlock > AZALEA_PRESSURE_PLATE =
189
+ register ("azalea_pressure_plate" , props -> new PressurePlateBlock (ModBlockSetTypes .AZALEA , props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_PRESSURE_PLATE ));
190
+ @ I18n (en_us = "Azalea Slab" , zh_cn = "杜鹃木台阶" , zh_tw = "杜鵑木半磚" )
191
+ public static final DeferredBlock <SlabBlock > AZALEA_SLAB =
192
+ register ("azalea_slab" , SlabBlock ::new , BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_SLAB ));
193
+ @ I18n (en_us = "Azalea Stairs" , zh_cn = "杜鹃木楼梯" , zh_tw = "杜鵑木樓梯" )
194
+ public static final DeferredBlock <StairBlock > AZALEA_STAIRS =
195
+ register ("azalea_stairs" , props -> new StairBlock (AZALEA_PLANKS .get ().defaultBlockState (), props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_STAIRS ));
196
+ @ I18n (en_us = "Azalea Door" , zh_cn = "杜鹃木门" , zh_tw = "杜鵑木門" )
197
+ public static final DeferredBlock <DoorBlock > AZALEA_DOOR =
198
+ register ("azalea_door" , props -> new DoorBlock (ModBlockSetTypes .AZALEA , props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_DOOR ));
199
+ @ I18n (en_us = "Azalea Door" , zh_cn = "杜鹃木活板门" , zh_tw = "杜鵑木地板門" )
200
+ public static final DeferredBlock <TrapDoorBlock > AZALEA_TRAPDOOR =
201
+ register ("azalea_trapdoor" , props -> new TrapDoorBlock (ModBlockSetTypes .AZALEA , props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_TRAPDOOR ));
178
202
@ I18n (en_us = "Azalea Sign" , zh_cn = "杜鹃木告示牌" , zh_tw = "杜鵑木告示牌" )
179
203
public static final DeferredBlock <StandingSignBlock > AZALEA_SIGN =
180
204
register ("azalea_sign" , props -> new StandingSignBlock (ModWoodTypes .AZALEA , props ), BlockBehaviour .Properties .ofFullCopy (Blocks .MANGROVE_SIGN ));
@@ -204,6 +228,30 @@ public class ModBlocks {
204
228
public static final DeferredItem <BlockItem > AZALEA_PLANKS_ITEM =
205
229
register ("azalea_planks" , AZALEA_PLANKS );
206
230
@ BasicBlockItem
231
+ public static final DeferredItem <BlockItem > AZALEA_BUTTON_ITEM =
232
+ register ("azalea_button" , AZALEA_BUTTON );
233
+ @ BasicBlockItem
234
+ public static final DeferredItem <BlockItem > AZALEA_FENCE_ITEM =
235
+ register ("azalea_fence" , AZALEA_FENCE );
236
+ @ BasicBlockItem
237
+ public static final DeferredItem <BlockItem > AZALEA_FENCE_GATE_ITEM =
238
+ register ("azalea_fence_gate" , AZALEA_FENCE_GATE );
239
+ @ BasicBlockItem
240
+ public static final DeferredItem <BlockItem > AZALEA_PRESSURE_PLATE_ITEM =
241
+ register ("azalea_pressure_plate" , AZALEA_PRESSURE_PLATE );
242
+ @ BasicBlockItem
243
+ public static final DeferredItem <BlockItem > AZALEA_SLAB_ITEM =
244
+ register ("azalea_slab" , AZALEA_SLAB );
245
+ @ BasicBlockItem
246
+ public static final DeferredItem <BlockItem > AZALEA_STAIRS_ITEM =
247
+ register ("azalea_stairs" , AZALEA_STAIRS );
248
+ @ BasicBlockItem
249
+ public static final DeferredItem <BlockItem > AZALEA_DOOR_ITEM =
250
+ register ("azalea_door" , AZALEA_DOOR );
251
+ @ BasicBlockItem
252
+ public static final DeferredItem <BlockItem > AZALEA_TRAPDOOR_ITEM =
253
+ register ("azalea_trapdoor" , AZALEA_TRAPDOOR );
254
+ @ BasicBlockItem
207
255
public static final DeferredItem <SignItem > AZALEA_SIGN_ITEM =
208
256
registerSign ("azalea_sign" , AZALEA_SIGN , AZALEA_WALL_SIGN );
209
257
@ BasicBlockItem
0 commit comments