Get creeperheal to properly log blocks in the database, using the new queue system.
This commit is contained in:
parent
a02cd91bcb
commit
2d525f3c7f
25 changed files with 492 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
// 1.20.1 2024-03-03T19:44:16.098572878 Block States: ariasessentials
|
||||
// 1.20.1 2024-04-23T21:56:19.854483943 Block States: ariasessentials
|
||||
ae2f6cd918bd461be7fb693641eaa5b78410b538 assets/ariasessentials/blockstates/clinker_brick_block.json
|
||||
f48474f63edb825feaa3cc2c990ecd5ed6909c74 assets/ariasessentials/blockstates/clinker_brick_slab.json
|
||||
5b501afd2a40c586b6811b9784ca2cd1a2dba373 assets/ariasessentials/blockstates/clinker_brick_stained_block.json
|
||||
|
@ -34,6 +34,7 @@ acdba80ab9bebc435f3cfdc80f845fa942eaf1d4 assets/ariasessentials/blockstates/stee
|
|||
b2076aa8074c942d074509a3ee27df350f81ab0f assets/ariasessentials/blockstates/steel_floor_grating_top.json
|
||||
a637df1cfe9b47f5691beb585ad9e7f72a8a641b assets/ariasessentials/blockstates/steel_railing.json
|
||||
7c667fb64bd412a080e1d92d9b7e194ef1a7cb25 assets/ariasessentials/blockstates/steel_table.json
|
||||
1bef53c224409e06091b0f9da5407589e173845b assets/ariasessentials/blockstates/tflipflop.json
|
||||
e03106a0ee60bc58f97f5cc3b1ad921f245c99dd assets/ariasessentials/models/block/clinker_brick_block_model0.json
|
||||
d777dea2873725f45fadd678d411040f530f8f58 assets/ariasessentials/models/block/clinker_brick_block_model1.json
|
||||
c480c6d87ce48bdf5d6fbb846a9c435a5c263c06 assets/ariasessentials/models/block/clinker_brick_block_model2.json
|
||||
|
@ -391,6 +392,7 @@ c33b748f6f17358bd7d58374caea829f5af46c8d assets/ariasessentials/models/block/ste
|
|||
e7f3120933bf9c3e48b630a6451cbadc3cfb49cb assets/ariasessentials/models/block/steel_floor_grating_top.json
|
||||
711b9bb46c9847800562b02eb8cb83ad18e9cc82 assets/ariasessentials/models/block/steel_railing.json
|
||||
8f302a21d929580d8500d08ebb54ad6b98071de2 assets/ariasessentials/models/block/steel_table.json
|
||||
585d5b3662ac26492f4e06ba82306930f94ae07e assets/ariasessentials/models/block/tflipflop.json
|
||||
4fca23a45d563abf5cf473dc0d1c245d48174b2a assets/ariasessentials/models/item/clinker_brick_block.json
|
||||
e4ed8c1d0d0f321a19c7e72b059778bbbc9b38b5 assets/ariasessentials/models/item/clinker_brick_slab.json
|
||||
4fbbce22895215e022ceed79aada64c3a498da6a assets/ariasessentials/models/item/clinker_brick_stained_block.json
|
||||
|
@ -426,3 +428,4 @@ cf2fb18ac1885dc8d29dd6910a480e6df6f0159a assets/ariasessentials/models/item/stee
|
|||
609df26ad277d9ed6f9e10a8c03d828136dd8cbb assets/ariasessentials/models/item/steel_floor_grating_top.json
|
||||
ac717f3bc13cb5de4400d736175cacc91f525bdc assets/ariasessentials/models/item/steel_railing.json
|
||||
18a59a078fccb7d9a638033aa76c5175d4abaa01 assets/ariasessentials/models/item/steel_table.json
|
||||
fadd2e7bba0010cc7e3c0139ffda671a728ebe3f assets/ariasessentials/models/item/tflipflop.json
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
// 1.20.1 2024-03-03T19:41:24.288854196 Loot Tables
|
||||
// 1.20.1 2024-04-23T21:53:46.136412523 Loot Tables
|
||||
2b4a329fcd0a69fdad6c43120bd5de86ad0565af data/ariasessentials/loot_tables/blocks/clinker_brick_block.json
|
||||
1ec32912180bc6bc4127ed7ddba8be226035858c data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json
|
||||
006e62eaf1f971fd385a92b5d6b5477d032c88e3 data/ariasessentials/loot_tables/blocks/clinker_brick_sastor_corner_block.json
|
||||
f9732252ea209ddd741e2b993a1e8917dd2ea889 data/ariasessentials/loot_tables/blocks/clinker_brick_slab.json
|
||||
1ebd50d212ef1833facb449ff4926ca684238f5f data/ariasessentials/loot_tables/blocks/clinker_brick_stained_block.json
|
||||
28f5cc93c182169e183435e963ed928c69a225d9 data/ariasessentials/loot_tables/blocks/clinker_brick_stained_slab.json
|
||||
|
@ -37,3 +36,4 @@ b5b1ddda0fb43e0b553667d8fc7b7a036a0c5150 data/ariasessentials/loot_tables/blocks
|
|||
54db4e8dce7f9d4b654de37cb16f7e292cb4fac9 data/ariasessentials/loot_tables/blocks/steel_floor_grating_top.json
|
||||
7716ab37ac37d21bcb205d283bda1658f75a2df8 data/ariasessentials/loot_tables/blocks/steel_railing.json
|
||||
878361275ccef96377190d00986722463f8da79c data/ariasessentials/loot_tables/blocks/steel_table.json
|
||||
9f87deac2a9b034e2b571cf6113bc9ffd90e778e data/ariasessentials/loot_tables/blocks/tflipflop.json
|
||||
|
|
|
@ -0,0 +1,64 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,input_power=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,input_power=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,input_power=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,input_power=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,input_power=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=north,input_power=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=north,input_power=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=north,input_power=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop"
|
||||
},
|
||||
"facing=south,input_power=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,input_power=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,input_power=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,input_power=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,input_power=false,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,input_power=false,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,input_power=true,powered=false": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,input_power=true,powered=true": {
|
||||
"model": "ariasessentials:block/tflipflop",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/logicgates/tflipflop"
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "ariasessentials:block/tflipflop"
|
||||
}
|
|
@ -11,11 +11,11 @@
|
|||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "ariasessentials:clinker_brick_sastor_corner_block"
|
||||
"name": "ariasessentials:tflipflop"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
}
|
||||
],
|
||||
"random_sequence": "ariasessentials:blocks/clinker_brick_sastor_corner_block"
|
||||
"random_sequence": "ariasessentials:blocks/tflipflop"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue