Mask Shards and updated limbo textures.
|
@ -241,6 +241,9 @@ public final class ModItems {
|
|||
@RegistryEntry("solid_static")
|
||||
public static final Item SOLID_STATIC = create(ModBlocks.SOLID_STATIC);
|
||||
|
||||
@RegistryEntry("mask_shard")
|
||||
public static final Item MASK_SHARD = create(new Item(new Item.Settings().group(DIMENSIONAL_DOORS)));
|
||||
|
||||
private static Item create(Block block) {
|
||||
return create(new BlockItem(block, (new Item.Settings()).group(DIMENSIONAL_DOORS)));
|
||||
}
|
||||
|
|
|
@ -108,6 +108,7 @@
|
|||
"item.dimdoors.dimensional_eraser.desc": "Erases entities",
|
||||
"item.dimdoors.monolith_spawner": "Monolith Spawner",
|
||||
"item.dimdoors.mask_wand": "Mask Wand",
|
||||
"item.dimdoors.mask_shard": "Mask Shard",
|
||||
|
||||
|
||||
"dimdoors.virtualTarget.dimdoors.available_link": "Random",
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": { "all": "dimdoors:block/unfolded_block" }
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "dimdoors:block/unfolded_block_down",
|
||||
"up": "dimdoors:block/unfolded_block_up",
|
||||
"north": "dimdoors:block/unfolded_block_north",
|
||||
"south": "dimdoors:block/unfolded_block_south",
|
||||
"west": "dimdoors:block/unfolded_block_west",
|
||||
"east": "dimdoors:block/unfolded_block_east"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "dimdoors:item/mask_shard"
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 528 B After Width: | Height: | Size: 410 B |
After Width: | Height: | Size: 464 B |
After Width: | Height: | Size: 474 B |
After Width: | Height: | Size: 489 B |
After Width: | Height: | Size: 485 B |
After Width: | Height: | Size: 469 B |
After Width: | Height: | Size: 472 B |
Before Width: | Height: | Size: 417 B After Width: | Height: | Size: 443 B |
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 391 B |
Before Width: | Height: | Size: 439 B After Width: | Height: | Size: 405 B |
BIN
src/main/resources/assets/dimdoors/textures/item/mask_shard.png
Normal file
After Width: | Height: | Size: 447 B |
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"type": "minecraft:entity",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1.0,
|
||||
"bonus_rolls": 0.0,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"functions": [
|
||||
{
|
||||
"function": "minecraft:set_count",
|
||||
"count": {
|
||||
"type": "minecraft:uniform",
|
||||
"min": 0.0,
|
||||
"max": 1.0
|
||||
},
|
||||
"add": false
|
||||
},
|
||||
{
|
||||
"function": "minecraft:looting_enchant",
|
||||
"count": {
|
||||
"type": "minecraft:uniform",
|
||||
"min": 0.0,
|
||||
"max": 1.0
|
||||
}
|
||||
}
|
||||
],
|
||||
"name": "dimdoors:mask_shard"
|
||||
}
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:killed_by_player"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|