Mask Shards and updated limbo textures.

This commit is contained in:
Waterpicker 2021-06-10 04:32:51 -05:00
parent 17df485200
commit 2ca8ef60af
17 changed files with 58 additions and 2 deletions

View file

@ -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)));
}

View file

@ -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",

View file

@ -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"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "dimdoors:item/mask_shard"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 528 B

After

Width:  |  Height:  |  Size: 410 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 485 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 417 B

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 370 B

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 439 B

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 447 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 360 B

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -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"
}
]
}
]
}