2026/01/27 更新
This commit is contained in:
parent
b63e69fc28
commit
13e2db49bf
44
.github/workflows/build.yml
vendored
44
.github/workflows/build.yml
vendored
|
|
@ -1,6 +1,9 @@
|
|||
name: Build
|
||||
name: Build and Release
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*' # 标签推送时触发发布,如 v1.0.0
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
@ -8,9 +11,6 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
|
||||
- name: Setup JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
|
|
@ -18,8 +18,36 @@ jobs:
|
|||
java-version: '21'
|
||||
distribution: 'temurin'
|
||||
|
||||
- name: Setup Gradle
|
||||
uses: gradle/actions/setup-gradle@v4
|
||||
- name: Make gradlew executable
|
||||
run: chmod +x ./gradlew
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
run: ./gradlew build
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: |
|
||||
build/libs/*.jar
|
||||
!build/libs/*-plain.jar
|
||||
retention-days: 7
|
||||
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
|
||||
steps:
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build-artifacts
|
||||
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
*.jar
|
||||
!*-plain.jar
|
||||
generate_release_notes: true
|
||||
|
|
@ -127,6 +127,11 @@ legacyForge {
|
|||
'--output', file('src/generated/resources/').absolutePath,
|
||||
'--existing', file('src/main/resources/').absolutePath
|
||||
}
|
||||
gameTestServer {
|
||||
type = "gameTestServer"
|
||||
systemProperty 'forge.enabledGameTestNamespaces', project.mod_id
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
mods {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ emi_version=1.1.22+1.20.1
|
|||
player_anim_version=1.0.2-rc1+1.20
|
||||
geckolib_version=4.2.1
|
||||
curios_version=5.5.0+1.20.1
|
||||
lib39_version=0.1.8
|
||||
lib39_version=0.1.9
|
||||
accore_version=1.20.1-26H4
|
||||
## Mod Properties
|
||||
# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
|
||||
|
|
@ -43,7 +43,7 @@ mod_name=Erotic Dungeon Game
|
|||
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
|
||||
mod_license=Apache 2.0, CC BY-NC-SA 4.0
|
||||
# The mod version. See https://semver.org/
|
||||
mod_version=26H4
|
||||
mod_version=26H5
|
||||
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
|
||||
# This should match the base package used for the mod sources.
|
||||
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
model_source/blockbench/love_machine.geo.bbmodel
Normal file
1
model_source/blockbench/love_machine.geo.bbmodel
Normal file
File diff suppressed because one or more lines are too long
BIN
model_source/blockbench/love_machine.png
Normal file
BIN
model_source/blockbench/love_machine.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
File diff suppressed because one or more lines are too long
1
model_source/blockbench/love_machine02.bbmodel
Normal file
1
model_source/blockbench/love_machine02.bbmodel
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,3 @@
|
|||
// 1.20.1 2026-01-23T14:56:47.6844609 Registries
|
||||
a5b5ba175f31193898232a5542de8f6ce5a1fbda data/eroticdungeongame/damage_type/fucked.json
|
||||
120683d0a3613c6467242175a396a9b0a7b9d6fc data/eroticdungeongame/damage_type/whipped.json
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
// 1.20.1 2026-01-19T14:45:00.3282464 Languages: zh_tw
|
||||
aa97bff6c14fe8b0f6d8d5cd456dc227b6b4c5dc assets/eroticdungeongame/lang/zh_tw.json
|
||||
// 1.20.1 2026-01-26T15:38:37.7517836 Languages: zh_tw
|
||||
1d242e998cefb23504aa13eec6e57c78ed34db8c assets/eroticdungeongame/lang/zh_tw.json
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
// 1.20.1 2026-01-19T14:45:00.3069076 Languages: zh_cn
|
||||
159f8dcdcc3a3634a5af765b0173eb532ed6c86e assets/eroticdungeongame/lang/zh_cn.json
|
||||
// 1.20.1 2026-01-26T15:38:37.7042631 Languages: zh_cn
|
||||
2d760a8b6d61bc546b708a0e6f238b0830776e51 assets/eroticdungeongame/lang/zh_cn.json
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// 1.20.1 2026-01-11T15:38:52.8805084 Loot Tables
|
||||
// 1.20.1 2026-01-25T22:22:14.5831762 Loot Tables
|
||||
50ca00bfc913111d52edecb78f3cd2e5a0e295c8 data/eroticdungeongame/loot_tables/blocks/acacia_crux.json
|
||||
0f31a8aa4b8ff0dfd57361414a1ec1ec34e557ef data/eroticdungeongame/loot_tables/blocks/acacia_cuff_pole.json
|
||||
26fe092b0ae90db25d1a5961d36647aab0c55857 data/eroticdungeongame/loot_tables/blocks/acacia_hanging_post.json
|
||||
|
|
@ -102,6 +102,7 @@ a233b58369aabb7b3fcac4aaf51fb787090fe624 data/eroticdungeongame/loot_tables/bloc
|
|||
0ec6e29c31c687f509306f9aa1093da61d4558b4 data/eroticdungeongame/loot_tables/blocks/dark_oak_wall_rack.json
|
||||
f637ff2d547fa336ac0c388d1dde40542ff1cce2 data/eroticdungeongame/loot_tables/blocks/dark_oak_x_cross.json
|
||||
66453c84ec5c691c5184c3cab24131e1921acdb4 data/eroticdungeongame/loot_tables/blocks/dungeon_crafting_table.json
|
||||
d86e03a55e850e966bc7d866604843ceef0d6419 data/eroticdungeongame/loot_tables/blocks/end_rod_love_machine.json
|
||||
cfe6b5a1eac3f3287d227cd248c1379ff4ddfcf6 data/eroticdungeongame/loot_tables/blocks/gray_acacia_prone_bench.json
|
||||
a47346821c5f0aa2ab51f1ab47b7c27dbc85f965 data/eroticdungeongame/loot_tables/blocks/gray_bamboo_prone_bench.json
|
||||
288e2fa6f9ba452b416508124a4160686e35704d data/eroticdungeongame/loot_tables/blocks/gray_birch_prone_bench.json
|
||||
|
|
@ -136,6 +137,7 @@ bebf7e6067f91e7f759779f1bcb4ccbbcad48c4d data/eroticdungeongame/loot_tables/bloc
|
|||
58fd0b97dcf3dd03d92d790041fdd7d9b0f0bc3d data/eroticdungeongame/loot_tables/blocks/jungle_spanish_donkey.json
|
||||
3a4ee3779bca53ee151f082392fbdbdd339dd04f data/eroticdungeongame/loot_tables/blocks/jungle_wall_rack.json
|
||||
6bfdaeee3849844972c5c7390127b57149fb99e6 data/eroticdungeongame/loot_tables/blocks/jungle_x_cross.json
|
||||
cbfb0a2b9db13750a478a181ef0238828621b5bd data/eroticdungeongame/loot_tables/blocks/lightning_rod_love_machine.json
|
||||
37bba2cfa2e180d3396b4c54757100308edb3437 data/eroticdungeongame/loot_tables/blocks/light_blue_acacia_prone_bench.json
|
||||
c9d48f091089deb3a58ebec20c217617f7bb2496 data/eroticdungeongame/loot_tables/blocks/light_blue_bamboo_prone_bench.json
|
||||
ce136c7463565000a44473e8cadbf1eee92ef28e data/eroticdungeongame/loot_tables/blocks/light_blue_birch_prone_bench.json
|
||||
|
|
@ -292,3 +294,4 @@ efbf0c6e913dbdded64d084d5d0041310c866a39 data/eroticdungeongame/loot_tables/bloc
|
|||
b0a1662fe298f2f3835cd4721a974c3966c70ceb data/eroticdungeongame/loot_tables/blocks/yellow_oak_prone_bench.json
|
||||
e7d8ce90b5e125773fae1a0dc678502e5f75b04b data/eroticdungeongame/loot_tables/blocks/yellow_spruce_prone_bench.json
|
||||
a0621907e932740d2c965d6a63a813603586102a data/eroticdungeongame/loot_tables/blocks/yellow_warped_prone_bench.json
|
||||
1f8fa0f6add4ec2119a4188f744f42cf1c1456eb data/eroticdungeongame/loot_tables/chests/dungeon_village.json
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
// 1.20.1 2026-01-16T22:07:52.2468922 Sound Definitions
|
||||
302d76dbf1220c850717bb863387e63ecaf02924 assets/eroticdungeongame/sounds.json
|
||||
// 1.20.1 2026-01-22T15:15:01.7817477 Sound Definitions
|
||||
99c96b74c9dfba01c66d2e9cf2674fb0bde054cd assets/eroticdungeongame/sounds.json
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// 1.20.1 2026-01-11T15:38:52.8855068 Item Models: eroticdungeongame
|
||||
// 1.20.1 2026-01-25T22:04:53.8259091 Item Models: eroticdungeongame
|
||||
82fc4ced6e245f3b9c179ba64b6c33bb14875c05 assets/eroticdungeongame/models/item/acacia_crux.json
|
||||
235bf133bbe7baa607c8fa80425424341be81d90 assets/eroticdungeongame/models/item/acacia_cuff_pole.json
|
||||
9a9de545641ce9b44c2d07f17f65af231777628c assets/eroticdungeongame/models/item/acacia_hanging_post.json
|
||||
|
|
@ -101,7 +101,9 @@ b002443943670253c26a8f30272138eddd3b520f assets/eroticdungeongame/models/item/da
|
|||
89fcd17d6adaba46466e8474ba524a039d57f7af assets/eroticdungeongame/models/item/dark_oak_spanish_donkey.json
|
||||
d6776eadd890d6a4f0e3dc63de43939f975048f4 assets/eroticdungeongame/models/item/dark_oak_wall_rack.json
|
||||
1e93e76a16f62144483fa5ed778119e1d815632d assets/eroticdungeongame/models/item/dark_oak_x_cross.json
|
||||
b143143d737663dfc27fb06a2a8d1bd708ccc047 assets/eroticdungeongame/models/item/device_key.json
|
||||
53903a2225e6b6f0178cf2fc45fb19041c3e7268 assets/eroticdungeongame/models/item/dungeon_crafting_table.json
|
||||
d4d4bc74973c5ea949980ef1bf49bcc343e8d465 assets/eroticdungeongame/models/item/end_rod_love_machine.json
|
||||
35c80292c877e73d90c8387a07fdc9cc9582358d assets/eroticdungeongame/models/item/gray_acacia_prone_bench.json
|
||||
1d358a1ff8251f25d684d295c8b86fe451cf7a0d assets/eroticdungeongame/models/item/gray_bamboo_prone_bench.json
|
||||
46e3b24ce2bac589ef5baf55c29301851b62d250 assets/eroticdungeongame/models/item/gray_birch_prone_bench.json
|
||||
|
|
@ -136,6 +138,7 @@ ec66ac33d0b24a41b102564d6c84b3b97e282299 assets/eroticdungeongame/models/item/ju
|
|||
0baad2fadb70944ec9324a8c3fe989b994a624cb assets/eroticdungeongame/models/item/jungle_spanish_donkey.json
|
||||
dd2803824cff072f89cfbfb137ddfef78e8e590e assets/eroticdungeongame/models/item/jungle_wall_rack.json
|
||||
02b9675ec4279a8c60ba5661db34f0321e2af067 assets/eroticdungeongame/models/item/jungle_x_cross.json
|
||||
d4d4bc74973c5ea949980ef1bf49bcc343e8d465 assets/eroticdungeongame/models/item/lightning_rod_love_machine.json
|
||||
c1e0e0b7ffea19525601ca039b3bd3e7d2de7e03 assets/eroticdungeongame/models/item/light_blue_acacia_prone_bench.json
|
||||
cf68f8eb0de5d7d7565ebfaa9d2af81dff4b45bb assets/eroticdungeongame/models/item/light_blue_bamboo_prone_bench.json
|
||||
d8f579e29a345e9e7d0a6a2633256ac2e72ab0f5 assets/eroticdungeongame/models/item/light_blue_birch_prone_bench.json
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// 1.20.1 2026-01-11T15:38:52.8835071 Block States: eroticdungeongame
|
||||
// 1.20.1 2026-01-25T22:04:53.8197787 Block States: eroticdungeongame
|
||||
a05ad750f3f56eee390788227bd5405563f81ff7 assets/eroticdungeongame/blockstates/acacia_crux.json
|
||||
8d12695b5107e76944843d9b989e202cd9d882cc assets/eroticdungeongame/blockstates/acacia_cuff_pole.json
|
||||
056b22a49ab02a0adecfd22f0a5db76568dcfa4b assets/eroticdungeongame/blockstates/acacia_hanging_post.json
|
||||
|
|
@ -102,6 +102,7 @@ f4a8e96c3e9e3184db69499c6d1c6e7553f01925 assets/eroticdungeongame/blockstates/da
|
|||
de58ae121f3409e34ae5c1522f41f61873346a4c assets/eroticdungeongame/blockstates/dark_oak_wall_rack.json
|
||||
2ed3fecfcb168b708e5c4ecaae7e556d8083d244 assets/eroticdungeongame/blockstates/dark_oak_x_cross.json
|
||||
0640180f3d4135c4ddf5f5b4bc0f49d13a34ee8d assets/eroticdungeongame/blockstates/dungeon_crafting_table.json
|
||||
919a0f58b7aa2b0911ad2e7cbbc209bc18fc2725 assets/eroticdungeongame/blockstates/end_rod_love_machine.json
|
||||
d7ece90b08c5606936c32562423509238e1ab9e3 assets/eroticdungeongame/blockstates/gray_acacia_prone_bench.json
|
||||
3bd27398bba8625beaf9b60356bbbbadfcb8e5b8 assets/eroticdungeongame/blockstates/gray_bamboo_prone_bench.json
|
||||
8ec9273cc42cc46955be79224b769c3dc4094bfb assets/eroticdungeongame/blockstates/gray_birch_prone_bench.json
|
||||
|
|
@ -136,6 +137,7 @@ e3638a902e9f0d9a57a84e07c07d9555d8abe5a7 assets/eroticdungeongame/blockstates/ju
|
|||
ddce467af8171ed53bd7d83510b89a6f0666207a assets/eroticdungeongame/blockstates/jungle_spanish_donkey.json
|
||||
46ad8863b5f4ac8fa324ce2e230dc65962f15eeb assets/eroticdungeongame/blockstates/jungle_wall_rack.json
|
||||
e8d05ac6249f49551a00e701912f6c746799d463 assets/eroticdungeongame/blockstates/jungle_x_cross.json
|
||||
919a0f58b7aa2b0911ad2e7cbbc209bc18fc2725 assets/eroticdungeongame/blockstates/lightning_rod_love_machine.json
|
||||
0b429f5723a23ee127d6a92aa6ff47891a0784e3 assets/eroticdungeongame/blockstates/light_blue_acacia_prone_bench.json
|
||||
f836fbd0eb3c7f32d5ff236eadac00a307f3077e assets/eroticdungeongame/blockstates/light_blue_bamboo_prone_bench.json
|
||||
5fd69c26ea185275395f2fd8ea2ccf34f7fd61f1 assets/eroticdungeongame/blockstates/light_blue_birch_prone_bench.json
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
// 1.20.1 2026-01-19T14:45:00.327241 Languages: lzh
|
||||
c917dea0a3af0ab6a67faf683b4ebacfeba04a83 assets/eroticdungeongame/lang/lzh.json
|
||||
// 1.20.1 2026-01-26T15:38:37.7507818 Languages: lzh
|
||||
7f9e676449e7dd464c5f9f3a015881000425f60e assets/eroticdungeongame/lang/lzh.json
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// 1.20.1 2026-01-21T18:53:09.9036997 Recipes
|
||||
// 1.20.1 2026-01-26T15:38:37.7082663 Recipes
|
||||
08bf2a1f46d95664c4974cdf3da8b349d60d60d4 data/eroticdungeongame/advancements/recipes/main_colorful_devices/black_cuff_bed.json
|
||||
266b14ba479556e88f3c8a1b49ae0510112d3090 data/eroticdungeongame/advancements/recipes/main_colorful_devices/blue_cuff_bed.json
|
||||
bdd4c7adc63231b7fe6822d0d45ee21440e2c992 data/eroticdungeongame/advancements/recipes/main_colorful_devices/brown_cuff_bed.json
|
||||
|
|
@ -484,6 +484,10 @@ a2fb951db12af822f7374051df853daa7d492f3d data/eroticdungeongame/advancements/rec
|
|||
81315598de544130195be4d1c2ed2d78ab2232dc data/eroticdungeongame/advancements/recipes/mixin_wooden_and_color_devices/dyed_yellow_oak_prone_bench.json
|
||||
c46dc478db832e53e60ab1e46a624130b77ceca9 data/eroticdungeongame/advancements/recipes/mixin_wooden_and_color_devices/dyed_yellow_spruce_prone_bench.json
|
||||
8e2503b59a116eb98e75b3f7b54a6bedfc04399b data/eroticdungeongame/advancements/recipes/mixin_wooden_and_color_devices/dyed_yellow_warped_prone_bench.json
|
||||
4b99f136c9b2fa7020d503e765ac23bac1821bae data/eroticdungeongame/advancements/recipes/tools/device_key.json
|
||||
41171b5fcd63dda65e6ce1512b3c60b616a3f7c8 data/eroticdungeongame/advancements/recipes/tools/device_key_reset.json
|
||||
1250d334597b90371733b36388c5b89cda2a8fc7 data/eroticdungeongame/advancements/recipes/tools/end_rod_love_machine.json
|
||||
f60cba35141a9d6c61fa817c8bfd1d3ab85ef002 data/eroticdungeongame/advancements/recipes/tools/lightning_rod_love_machine.json
|
||||
9f116f8a1b1cb77289922c1bbb672809f36d3601 data/eroticdungeongame/advancements/recipes/tools/whip.json
|
||||
71c3cac4c873e967a222a17c5a1b2f5b0e0fbf05 data/eroticdungeongame/recipes/acacia_crux.json
|
||||
9de96ebaed5e5f486af4469427e81abf5534fa9e data/eroticdungeongame/recipes/acacia_cuff_pole.json
|
||||
|
|
@ -587,199 +591,202 @@ f8d3fb68d93cdd464a386af27ae37db8f0bd48b1 data/eroticdungeongame/recipes/dark_oak
|
|||
0e30713b1ee78bc181030a4704ca83e2057a5da6 data/eroticdungeongame/recipes/dark_oak_spanish_donkey.json
|
||||
da1d9014bcf47c37b9f4621886974d39a738ca52 data/eroticdungeongame/recipes/dark_oak_wall_rack.json
|
||||
31e960e68ca3a5eec12274390973bf9bec7a84c0 data/eroticdungeongame/recipes/dark_oak_x_cross.json
|
||||
129c29405a4df12b3367be4070f3edf0f370d685 data/eroticdungeongame/recipes/device_key.json
|
||||
2da8deb0e513ac756b12eb17ec8e59df5e68efbe data/eroticdungeongame/recipes/device_key_reset.json
|
||||
aa1def745bec9ac3b41e3469fe43497f30081b04 data/eroticdungeongame/recipes/dungeon_crafting_table.json
|
||||
1b1875cbb6e3ee783f721f63af246cff92acd6a1 data/eroticdungeongame/recipes/dyed_black_acacia_prone_bench.json
|
||||
9cebed59b5d9d443ae29fb9ad19d3a906e083663 data/eroticdungeongame/recipes/dyed_black_bamboo_prone_bench.json
|
||||
cdd5550a125b94b04773f591634df037c8822aad data/eroticdungeongame/recipes/dyed_black_birch_prone_bench.json
|
||||
38d5cae39a60e253ce3095dd0b43705cedd18086 data/eroticdungeongame/recipes/dyed_black_cherry_prone_bench.json
|
||||
bbfc8611a3ba234fe984fe8c073b1fa9e3928775 data/eroticdungeongame/recipes/dyed_black_crimson_prone_bench.json
|
||||
ff298389bcb5470c85739dfdc371a7ba3c6c0c63 data/eroticdungeongame/recipes/dyed_black_cuff_bed.json
|
||||
aeb9b9d2531455ac7650e78823cd1a4e465adbe4 data/eroticdungeongame/recipes/dyed_black_dark_oak_prone_bench.json
|
||||
3e670735bf40a9a1635429a810eee6f057fa1ef9 data/eroticdungeongame/recipes/dyed_black_jungle_prone_bench.json
|
||||
b8d79a259b60f591ce3a35349a303dc1d541c834 data/eroticdungeongame/recipes/dyed_black_mangrove_prone_bench.json
|
||||
049ed03f40a784f7193229e130ec474b61f43d94 data/eroticdungeongame/recipes/dyed_black_oak_prone_bench.json
|
||||
841df7d9e03410894968a62ae7f199c68dfd2f9c data/eroticdungeongame/recipes/dyed_black_spruce_prone_bench.json
|
||||
9a46a944e0d0d7de414d6e97a87adf6a8f018e4c data/eroticdungeongame/recipes/dyed_black_warped_prone_bench.json
|
||||
c9f72e5525100fd4e9004e20d652ef764037fced data/eroticdungeongame/recipes/dyed_blue_acacia_prone_bench.json
|
||||
54dde27f628a61cfe7befe1ce52583e6125db60c data/eroticdungeongame/recipes/dyed_blue_bamboo_prone_bench.json
|
||||
1cda1252e1080994195555d2a0f3dc37e76e1fc1 data/eroticdungeongame/recipes/dyed_blue_birch_prone_bench.json
|
||||
704269604f1e6cec01de6eb388719ef17f0337f7 data/eroticdungeongame/recipes/dyed_blue_cherry_prone_bench.json
|
||||
133c3201568c2e2eedc07eee68ef06a50bb19d79 data/eroticdungeongame/recipes/dyed_blue_crimson_prone_bench.json
|
||||
e04b12e59864a735bc818f9287cdd73cbff29a53 data/eroticdungeongame/recipes/dyed_blue_cuff_bed.json
|
||||
4906c4985e5ccd40fa0db70d31b69feab70af530 data/eroticdungeongame/recipes/dyed_blue_dark_oak_prone_bench.json
|
||||
c3a62aa0eb1cbc0eba79ea59f8f4b932abf22fa9 data/eroticdungeongame/recipes/dyed_blue_jungle_prone_bench.json
|
||||
4cac62c4df0e6f224869c1cded3713e3cd905452 data/eroticdungeongame/recipes/dyed_blue_mangrove_prone_bench.json
|
||||
a65059f81d60e328ecbddc28ba0d9fc41ae8ef1f data/eroticdungeongame/recipes/dyed_blue_oak_prone_bench.json
|
||||
4ce2b852c3b22d21a1822a0538cb33d9234f2a0e data/eroticdungeongame/recipes/dyed_blue_spruce_prone_bench.json
|
||||
ed029e9687c38be6e4ee6f6e8b17f03f257e7298 data/eroticdungeongame/recipes/dyed_blue_warped_prone_bench.json
|
||||
80e4355dde77529c6c77132a4aa1b4c779a01bbf data/eroticdungeongame/recipes/dyed_brown_acacia_prone_bench.json
|
||||
b0b6d616aaa44d15365dd29f24e3f992a49a7d3a data/eroticdungeongame/recipes/dyed_brown_bamboo_prone_bench.json
|
||||
fe21f97d0f4d92b982a487b57315932a38a592ba data/eroticdungeongame/recipes/dyed_brown_birch_prone_bench.json
|
||||
31e2a313cd7abd6996f34a097fd0e9cb358a5dd8 data/eroticdungeongame/recipes/dyed_brown_cherry_prone_bench.json
|
||||
2c7c791cd4b857f250538d27c9e954231a65d1b6 data/eroticdungeongame/recipes/dyed_brown_crimson_prone_bench.json
|
||||
d50080f037e35318b9ee0a5346e56ade6d71fd23 data/eroticdungeongame/recipes/dyed_brown_cuff_bed.json
|
||||
cf299f39e2489ae0b3c37ddb1a5e2fd4d546d332 data/eroticdungeongame/recipes/dyed_brown_dark_oak_prone_bench.json
|
||||
1bf547815d6a117ff38edeceb305f5227a8f306e data/eroticdungeongame/recipes/dyed_brown_jungle_prone_bench.json
|
||||
1142e82cc108058355281365c4f0419bb4255c4e data/eroticdungeongame/recipes/dyed_brown_mangrove_prone_bench.json
|
||||
a3762c4dcdc6c3bc33422f19acc6b0ded33d1b12 data/eroticdungeongame/recipes/dyed_brown_oak_prone_bench.json
|
||||
94f04a6735294d34212ba8dd16c9544a38b66118 data/eroticdungeongame/recipes/dyed_brown_spruce_prone_bench.json
|
||||
a799d021c5fa1f9a54e6eebcc6d1ad46c1ba6fd4 data/eroticdungeongame/recipes/dyed_brown_warped_prone_bench.json
|
||||
135b5e65b125b6376389b0ccd1f3c9ea87d29d42 data/eroticdungeongame/recipes/dyed_cyan_acacia_prone_bench.json
|
||||
92f7e69742e1d6fe932797b7ed782f72768dd1d0 data/eroticdungeongame/recipes/dyed_cyan_bamboo_prone_bench.json
|
||||
59c00aec0a0f19b5755b57ce6d685e9338183453 data/eroticdungeongame/recipes/dyed_cyan_birch_prone_bench.json
|
||||
15ac7be336df9eae4d3efce943ddb077cfcbfb48 data/eroticdungeongame/recipes/dyed_cyan_cherry_prone_bench.json
|
||||
50ea79b49eadc9d76373f93da58d74e1a02a8d79 data/eroticdungeongame/recipes/dyed_cyan_crimson_prone_bench.json
|
||||
cd95bfc3a14c926805e48b704024fc18400d1df4 data/eroticdungeongame/recipes/dyed_cyan_cuff_bed.json
|
||||
fa9a42f08f20036c18773aacb1a1fe948adf0936 data/eroticdungeongame/recipes/dyed_cyan_dark_oak_prone_bench.json
|
||||
26096e6359aa4789a2f192fa342582291ce1e58a data/eroticdungeongame/recipes/dyed_cyan_jungle_prone_bench.json
|
||||
acb20da322653124050fb58280705ffd5b684872 data/eroticdungeongame/recipes/dyed_cyan_mangrove_prone_bench.json
|
||||
cab516466b2bf9fa5b2f63fa4d7a8cabab5f047a data/eroticdungeongame/recipes/dyed_cyan_oak_prone_bench.json
|
||||
78ccf857aa70b82c3ec78ca1430a56c4c0a17672 data/eroticdungeongame/recipes/dyed_cyan_spruce_prone_bench.json
|
||||
200e1c7dec01c8f601b75dbc6a1bd679335a1b09 data/eroticdungeongame/recipes/dyed_cyan_warped_prone_bench.json
|
||||
a78d673ee470f3c2b85ec1f2dd39c40024979dbb data/eroticdungeongame/recipes/dyed_gray_acacia_prone_bench.json
|
||||
54e8cea3d76e00043b873c7abe9014226ad4397c data/eroticdungeongame/recipes/dyed_gray_bamboo_prone_bench.json
|
||||
646a53990e719df033bf16d192e3296069b81c5a data/eroticdungeongame/recipes/dyed_gray_birch_prone_bench.json
|
||||
e67d182bf43a793804afa780f802ad0aa3398585 data/eroticdungeongame/recipes/dyed_gray_cherry_prone_bench.json
|
||||
68190ed393ebef963bdad5cecfadef844a16530d data/eroticdungeongame/recipes/dyed_gray_crimson_prone_bench.json
|
||||
70ab71743bbe6b32d6abc978b38cfcc4f714dfe8 data/eroticdungeongame/recipes/dyed_gray_cuff_bed.json
|
||||
9cbb3332ba5702ce336cbc0e75aaafeb7ff46629 data/eroticdungeongame/recipes/dyed_gray_dark_oak_prone_bench.json
|
||||
dc0c3225f493ab037311b4c5fbe5a9c6f7b20026 data/eroticdungeongame/recipes/dyed_gray_jungle_prone_bench.json
|
||||
962900642ce09a72842ed6e5e5a8986f0f16389d data/eroticdungeongame/recipes/dyed_gray_mangrove_prone_bench.json
|
||||
9d76a7ebe09058bdd2c6e9c8caa836b8066454b2 data/eroticdungeongame/recipes/dyed_gray_oak_prone_bench.json
|
||||
4f5d2639ecaea6b80e33124cba73e2361b9ded94 data/eroticdungeongame/recipes/dyed_gray_spruce_prone_bench.json
|
||||
ce7711bce72f752dfaa87056e168e4879ff26f67 data/eroticdungeongame/recipes/dyed_gray_warped_prone_bench.json
|
||||
fad7c1a05b099e141075389a4e1a983efb07667e data/eroticdungeongame/recipes/dyed_green_acacia_prone_bench.json
|
||||
f5ae2ea7c9519c751124f114407820ca4075d3b0 data/eroticdungeongame/recipes/dyed_green_bamboo_prone_bench.json
|
||||
ae3112ef563c4623b8a4ef26c902085490f772b0 data/eroticdungeongame/recipes/dyed_green_birch_prone_bench.json
|
||||
0d507b0812164210bfd260cc97c44b3695dd430f data/eroticdungeongame/recipes/dyed_green_cherry_prone_bench.json
|
||||
5d7c4c632a4786d73120d0393105706e245f3f82 data/eroticdungeongame/recipes/dyed_green_crimson_prone_bench.json
|
||||
cc7d433e56c40a47f22cb19d7c02f423b95aab14 data/eroticdungeongame/recipes/dyed_green_cuff_bed.json
|
||||
98e442fa73c746f86f84cffb758199d368760d3b data/eroticdungeongame/recipes/dyed_green_dark_oak_prone_bench.json
|
||||
116028aafc59532ee96091ef551b5a6cbec47a82 data/eroticdungeongame/recipes/dyed_green_jungle_prone_bench.json
|
||||
d47697eb7f32cd079e6a4bfaa89bf977c752f9ea data/eroticdungeongame/recipes/dyed_green_mangrove_prone_bench.json
|
||||
681aca37453ee9cf39e4460b1f1d23a2111d9fcf data/eroticdungeongame/recipes/dyed_green_oak_prone_bench.json
|
||||
13f2dd9216ebec9f393fc6e60fc58b0d205df60d data/eroticdungeongame/recipes/dyed_green_spruce_prone_bench.json
|
||||
102874e3ef37b173c4e590673f00dbe895a17963 data/eroticdungeongame/recipes/dyed_green_warped_prone_bench.json
|
||||
ea5913ff40d4353dc28e3dda1cd2043bf15c3aae data/eroticdungeongame/recipes/dyed_light_blue_acacia_prone_bench.json
|
||||
80d6f4681eb72c8c56f33b30ac44eab894cb6945 data/eroticdungeongame/recipes/dyed_light_blue_bamboo_prone_bench.json
|
||||
66bb17d576cf8a5e1108aaea926036a482b02000 data/eroticdungeongame/recipes/dyed_light_blue_birch_prone_bench.json
|
||||
b038f55c7c927ee2646feb762ae35b3f98e1132f data/eroticdungeongame/recipes/dyed_light_blue_cherry_prone_bench.json
|
||||
6544fd806fcc4aa0bf2c301ee1142c657a6cbb63 data/eroticdungeongame/recipes/dyed_light_blue_crimson_prone_bench.json
|
||||
381508a57b608b3c29b3846a52874f396955577f data/eroticdungeongame/recipes/dyed_light_blue_cuff_bed.json
|
||||
4a325a4923498e4ceffaf6aa44f927a1ebabb12b data/eroticdungeongame/recipes/dyed_light_blue_dark_oak_prone_bench.json
|
||||
ee03486f747b0a75017abb991220f27a91fa2274 data/eroticdungeongame/recipes/dyed_light_blue_jungle_prone_bench.json
|
||||
ad1df2d67b56883e657b6d7b7e743f235bfd8727 data/eroticdungeongame/recipes/dyed_light_blue_mangrove_prone_bench.json
|
||||
f48497a5f53646e4f0bd891d5bb7186e01fe62ef data/eroticdungeongame/recipes/dyed_light_blue_oak_prone_bench.json
|
||||
a757c8346fc921abbb7cfad6b1f6d79edf3062da data/eroticdungeongame/recipes/dyed_light_blue_spruce_prone_bench.json
|
||||
eeabf7ae6dbf9732cda5fc46826872b4783b363f data/eroticdungeongame/recipes/dyed_light_blue_warped_prone_bench.json
|
||||
953b87c4c21aeb2d56f6184f242456bd0c71238a data/eroticdungeongame/recipes/dyed_light_gray_acacia_prone_bench.json
|
||||
cf396c3625903fd4dadc4bdb73c139df4a7d4efb data/eroticdungeongame/recipes/dyed_light_gray_bamboo_prone_bench.json
|
||||
3f03984a7e93ee5efd87246a2f148e4bba3cb952 data/eroticdungeongame/recipes/dyed_light_gray_birch_prone_bench.json
|
||||
5b7825088a1ec295dd0f6a6aa9666d62a9220129 data/eroticdungeongame/recipes/dyed_light_gray_cherry_prone_bench.json
|
||||
f72702154937766302a39399c946394ad2d76571 data/eroticdungeongame/recipes/dyed_light_gray_crimson_prone_bench.json
|
||||
70b009bef32aada3d9869dd098e59b7a4ea265f3 data/eroticdungeongame/recipes/dyed_light_gray_cuff_bed.json
|
||||
923f5dccc81420f4b97f19c586bb68bc6f16f7cc data/eroticdungeongame/recipes/dyed_light_gray_dark_oak_prone_bench.json
|
||||
4dfc0a6485b10a27327ca0d9fa29df85867766fb data/eroticdungeongame/recipes/dyed_light_gray_jungle_prone_bench.json
|
||||
6ed5c438201bfe376a0abfe1a16068ffcb581745 data/eroticdungeongame/recipes/dyed_light_gray_mangrove_prone_bench.json
|
||||
c943c061eba60c5490b462d84d90b6c16f374a6b data/eroticdungeongame/recipes/dyed_light_gray_oak_prone_bench.json
|
||||
cd7acc7efeb9280be49061c88eddc6dc575799d1 data/eroticdungeongame/recipes/dyed_light_gray_spruce_prone_bench.json
|
||||
ef26f68300ae656c3b8ffc75cf4b7e6482de207b data/eroticdungeongame/recipes/dyed_light_gray_warped_prone_bench.json
|
||||
29444d8da8ba7f20fe7ebe0b9597e125e8ce2e8e data/eroticdungeongame/recipes/dyed_lime_acacia_prone_bench.json
|
||||
bc3cc258f72a500fae36256b9a386324b76ecd39 data/eroticdungeongame/recipes/dyed_lime_bamboo_prone_bench.json
|
||||
6b49b1acc987721709c2fabb7393cd38cdf2ed6f data/eroticdungeongame/recipes/dyed_lime_birch_prone_bench.json
|
||||
6a7580a608c671f4e9604fac239fc21c17a8c6ab data/eroticdungeongame/recipes/dyed_lime_cherry_prone_bench.json
|
||||
1cb65e13e044d8c5eab9374ae9e80e309a6ad307 data/eroticdungeongame/recipes/dyed_lime_crimson_prone_bench.json
|
||||
10561cbaaad277fbc0721de99d5c43f621086bb0 data/eroticdungeongame/recipes/dyed_lime_cuff_bed.json
|
||||
fea06e83d580071a3b62612848367390f3f96af2 data/eroticdungeongame/recipes/dyed_lime_dark_oak_prone_bench.json
|
||||
233671b21d71edf137e735208fa97a1663ea65c1 data/eroticdungeongame/recipes/dyed_lime_jungle_prone_bench.json
|
||||
44d538912dbdb7605f3ef4b5c81c174a35fb8990 data/eroticdungeongame/recipes/dyed_lime_mangrove_prone_bench.json
|
||||
7f2ddba655b54d20ae954f30fe9204acd6cfcdc8 data/eroticdungeongame/recipes/dyed_lime_oak_prone_bench.json
|
||||
04b937d6179f123a6190c1b1aff18f0fac20959f data/eroticdungeongame/recipes/dyed_lime_spruce_prone_bench.json
|
||||
68698f92626bdd4f0f35920e2ab927355b08a6e5 data/eroticdungeongame/recipes/dyed_lime_warped_prone_bench.json
|
||||
5228c6ad0b09b2721c4acdf0f3c3ebc528b81b41 data/eroticdungeongame/recipes/dyed_magenta_acacia_prone_bench.json
|
||||
c2babf1b80bd43f9e9cfe90eb3e2130057b17355 data/eroticdungeongame/recipes/dyed_magenta_bamboo_prone_bench.json
|
||||
171482da33ebae254d53971dd668d0aabf99a557 data/eroticdungeongame/recipes/dyed_magenta_birch_prone_bench.json
|
||||
d24c0d065d1c805cb7f40cdfc493bed6c8c915ff data/eroticdungeongame/recipes/dyed_magenta_cherry_prone_bench.json
|
||||
47096eb4d192a3260788aae65ca8906f336ec94b data/eroticdungeongame/recipes/dyed_magenta_crimson_prone_bench.json
|
||||
ade34d78a305cfb165d3d87c29c292ba8e80b2f4 data/eroticdungeongame/recipes/dyed_magenta_cuff_bed.json
|
||||
845c1363daa612341e804f1ddac1486a0cf308ee data/eroticdungeongame/recipes/dyed_magenta_dark_oak_prone_bench.json
|
||||
a8c3a887377f29c959d40ff52c8c3da2a1019879 data/eroticdungeongame/recipes/dyed_magenta_jungle_prone_bench.json
|
||||
66c11f2e391979d3f20775ba580d9b742e66fe23 data/eroticdungeongame/recipes/dyed_magenta_mangrove_prone_bench.json
|
||||
df2f3eef5e35affc77e959d583cb9a9aa83a4091 data/eroticdungeongame/recipes/dyed_magenta_oak_prone_bench.json
|
||||
c82096786fbdc46103090f20d32cb8641bf19050 data/eroticdungeongame/recipes/dyed_magenta_spruce_prone_bench.json
|
||||
933267254d4af565a893981ab71e263822178f26 data/eroticdungeongame/recipes/dyed_magenta_warped_prone_bench.json
|
||||
966f68a1266374b9e75144f28335e9686c8bb7e2 data/eroticdungeongame/recipes/dyed_orange_acacia_prone_bench.json
|
||||
9eff6056630fe1b0258d8d727e878c51cce5ef1c data/eroticdungeongame/recipes/dyed_orange_bamboo_prone_bench.json
|
||||
b0bbf9928c806ac9ddb6d3935aa6dfd8b74ac3d3 data/eroticdungeongame/recipes/dyed_orange_birch_prone_bench.json
|
||||
95f654fd18ae0e91d654b3a9474958c06706d334 data/eroticdungeongame/recipes/dyed_orange_cherry_prone_bench.json
|
||||
65dc07eebced57d1b35becadc3db7fbb01835cc8 data/eroticdungeongame/recipes/dyed_orange_crimson_prone_bench.json
|
||||
3664f5d86c6eb92fe41746d2ec8d37c360bcf7f1 data/eroticdungeongame/recipes/dyed_orange_cuff_bed.json
|
||||
7ca1659a9994de8cdb785b3157c30c516b2e57b4 data/eroticdungeongame/recipes/dyed_orange_dark_oak_prone_bench.json
|
||||
14782e55796e56a16edd301e14ab7b80bc5464fd data/eroticdungeongame/recipes/dyed_orange_jungle_prone_bench.json
|
||||
778f5aaae13756a3ccbeb04ef2062d5515eca4e1 data/eroticdungeongame/recipes/dyed_orange_mangrove_prone_bench.json
|
||||
dce8ebc4ef88bd60e8e65ae7a704233eba1a5b5d data/eroticdungeongame/recipes/dyed_orange_oak_prone_bench.json
|
||||
68cee963bdc40fe4c75bfc43d5fb35de442c6f71 data/eroticdungeongame/recipes/dyed_orange_spruce_prone_bench.json
|
||||
b572ee0fc5e9319c3d578ed14f3bf9d4c02ea296 data/eroticdungeongame/recipes/dyed_orange_warped_prone_bench.json
|
||||
48701f6bc7a79d0a207c64d7e2ecdb553703a65a data/eroticdungeongame/recipes/dyed_pink_acacia_prone_bench.json
|
||||
8cff5450cc585359083ff61e820c43aae7d5b212 data/eroticdungeongame/recipes/dyed_pink_bamboo_prone_bench.json
|
||||
520cf4318e89fa06d7965cd45883a68ce0c302c7 data/eroticdungeongame/recipes/dyed_pink_birch_prone_bench.json
|
||||
3c81645ef6cf5e674cabf8a883d285b42e9ca66a data/eroticdungeongame/recipes/dyed_pink_cherry_prone_bench.json
|
||||
143b311dcc909d48093acf118aee957e27c4377d data/eroticdungeongame/recipes/dyed_pink_crimson_prone_bench.json
|
||||
8170de8bd99e6f2686d1730a479d1b20c43ae272 data/eroticdungeongame/recipes/dyed_pink_cuff_bed.json
|
||||
e60c67ed7add3870ec45a4097d2fc30961a90fa1 data/eroticdungeongame/recipes/dyed_pink_dark_oak_prone_bench.json
|
||||
3074c6ee377413774ce7762378758321066d0b2d data/eroticdungeongame/recipes/dyed_pink_jungle_prone_bench.json
|
||||
3bbca44f0c08e132167d30fd5d85527a3734bca7 data/eroticdungeongame/recipes/dyed_pink_mangrove_prone_bench.json
|
||||
f8e8fab7012efa371b2382b5c67d9e9ff1c96df0 data/eroticdungeongame/recipes/dyed_pink_oak_prone_bench.json
|
||||
7da4692436290bd1d370146d5587bf900d609061 data/eroticdungeongame/recipes/dyed_pink_spruce_prone_bench.json
|
||||
47cb802ba99a9bce211004a1f4ea2fa5a3dedbc2 data/eroticdungeongame/recipes/dyed_pink_warped_prone_bench.json
|
||||
5f071c1baeb8c5e590b2943d0c63f7cbd21d1d29 data/eroticdungeongame/recipes/dyed_purple_acacia_prone_bench.json
|
||||
348731d41a7c7a070722f11fb4041003a4269eda data/eroticdungeongame/recipes/dyed_purple_bamboo_prone_bench.json
|
||||
dd46b31680ed26999bf314e1d39fb7a4408698de data/eroticdungeongame/recipes/dyed_purple_birch_prone_bench.json
|
||||
c5da3819ffd477ff11a8707eaad55609568785c2 data/eroticdungeongame/recipes/dyed_purple_cherry_prone_bench.json
|
||||
69ad7bf6100f55148bf5509c8f6189b501a5e380 data/eroticdungeongame/recipes/dyed_purple_crimson_prone_bench.json
|
||||
b12bc0a25b1071d4833881d8e4293f9d4a948e04 data/eroticdungeongame/recipes/dyed_purple_cuff_bed.json
|
||||
43839b8429ba3e55a5d45048eac77fc4f56927bf data/eroticdungeongame/recipes/dyed_purple_dark_oak_prone_bench.json
|
||||
8860b1f085ec9e448112633e29e063d3ca1df96e data/eroticdungeongame/recipes/dyed_purple_jungle_prone_bench.json
|
||||
5003dbb1cf0e7e0f9601e25d200cd234f5cb0e97 data/eroticdungeongame/recipes/dyed_purple_mangrove_prone_bench.json
|
||||
9547bcacc1a144e3a2731e348f6f62cf9866bb23 data/eroticdungeongame/recipes/dyed_purple_oak_prone_bench.json
|
||||
67197b5ea7eac3e5b8f36e2200de5363895a2fe9 data/eroticdungeongame/recipes/dyed_purple_spruce_prone_bench.json
|
||||
5b00d059c6e1532951815ef5bc44d7f860a7473c data/eroticdungeongame/recipes/dyed_purple_warped_prone_bench.json
|
||||
53c5d6709c37a75477941a97d94634961ab0cd82 data/eroticdungeongame/recipes/dyed_red_acacia_prone_bench.json
|
||||
1763b12db4f15cffad881162070db921a04c6419 data/eroticdungeongame/recipes/dyed_red_bamboo_prone_bench.json
|
||||
f6118e84ea942d4a1c9abd6bcf2a603d0450d8ee data/eroticdungeongame/recipes/dyed_red_birch_prone_bench.json
|
||||
0915d1106808a4983f176d338ac3a263cb7fafd9 data/eroticdungeongame/recipes/dyed_red_cherry_prone_bench.json
|
||||
f63bbcf1beb2373407cb493082af126699318b9a data/eroticdungeongame/recipes/dyed_red_crimson_prone_bench.json
|
||||
e4cca0d23e77b31c29269aba93c2c23b24aff8eb data/eroticdungeongame/recipes/dyed_red_cuff_bed.json
|
||||
6d1e56b6eb11f8f85d0e3babf9bc981ccc8e9720 data/eroticdungeongame/recipes/dyed_red_dark_oak_prone_bench.json
|
||||
4ca78dbe7591c14057ab0d90b5fae45a54964bcd data/eroticdungeongame/recipes/dyed_red_jungle_prone_bench.json
|
||||
3d0d63b8e2653c882ab9ce92d232d2f69a4a0a8e data/eroticdungeongame/recipes/dyed_red_mangrove_prone_bench.json
|
||||
dcfea0d09ac2080132567ef8dcf213c8aa4324ad data/eroticdungeongame/recipes/dyed_red_oak_prone_bench.json
|
||||
128e3611c0dd0d1b754823382c2172028938020e data/eroticdungeongame/recipes/dyed_red_spruce_prone_bench.json
|
||||
a13f2bc7307a17ca00b74277400c14f542d68198 data/eroticdungeongame/recipes/dyed_red_warped_prone_bench.json
|
||||
3bfbf251c6dc79d464a710cc477191388abe3a35 data/eroticdungeongame/recipes/dyed_white_acacia_prone_bench.json
|
||||
5e7ec0e7c4399ce32ae2e4d52d12a939ce2f137d data/eroticdungeongame/recipes/dyed_white_bamboo_prone_bench.json
|
||||
0fd3e01863b1dc1edb54e68ec3ee2d4835d06382 data/eroticdungeongame/recipes/dyed_white_birch_prone_bench.json
|
||||
1feef908be5523797aaafd4f0c2c890c0b751f54 data/eroticdungeongame/recipes/dyed_white_cherry_prone_bench.json
|
||||
9bcdb88b29b2f25af5d70210ed4c2ad9baf7c017 data/eroticdungeongame/recipes/dyed_white_crimson_prone_bench.json
|
||||
d33ce7b6379951a14334161b7e89af76bbe58015 data/eroticdungeongame/recipes/dyed_white_cuff_bed.json
|
||||
1610c64d4dcfea642be3788bb94c179f6bc13a0c data/eroticdungeongame/recipes/dyed_white_dark_oak_prone_bench.json
|
||||
4726daca6a51083da38759efb7dda17f7fd53555 data/eroticdungeongame/recipes/dyed_white_jungle_prone_bench.json
|
||||
04e1776a8b85968d9c7d5bbcb2701638c7c69a69 data/eroticdungeongame/recipes/dyed_white_mangrove_prone_bench.json
|
||||
130b8268bbf4b46f2951329879a991d94fa4f0e1 data/eroticdungeongame/recipes/dyed_white_oak_prone_bench.json
|
||||
c5e9360c06c130209b2a470ba7504cc757619daf data/eroticdungeongame/recipes/dyed_white_spruce_prone_bench.json
|
||||
4874cf972992bbe7eb26e18b381d8e5c91c8528e data/eroticdungeongame/recipes/dyed_white_warped_prone_bench.json
|
||||
843ebf4d32bcc7d1b9f25cd9db738ae0e063f5ec data/eroticdungeongame/recipes/dyed_yellow_acacia_prone_bench.json
|
||||
eb344ee67e93c8b9d0119cd8ab2e05fb2ea88a0f data/eroticdungeongame/recipes/dyed_yellow_bamboo_prone_bench.json
|
||||
ce8981f4a7351d8320140b5c3aa3677d80c27157 data/eroticdungeongame/recipes/dyed_yellow_birch_prone_bench.json
|
||||
a8af6611e1bfb845d3fe15bcdc580296a1b6a543 data/eroticdungeongame/recipes/dyed_yellow_cherry_prone_bench.json
|
||||
dce2790ee9681dc5809eea11a2519f0e8ad827bc data/eroticdungeongame/recipes/dyed_yellow_crimson_prone_bench.json
|
||||
c8ed55619adb4b25fdca30b72feef723314cdcc5 data/eroticdungeongame/recipes/dyed_yellow_cuff_bed.json
|
||||
cdcf9a87d15ea52724025c8058971a7aacfc4fb4 data/eroticdungeongame/recipes/dyed_yellow_dark_oak_prone_bench.json
|
||||
8edcf4062dd919d15841ae088e06243d5454655b data/eroticdungeongame/recipes/dyed_yellow_jungle_prone_bench.json
|
||||
e097c630bbd762e8fd6915853ed8e41f0491c6ae data/eroticdungeongame/recipes/dyed_yellow_mangrove_prone_bench.json
|
||||
c292ceadd8de725b07480020a49e01333a9e7f96 data/eroticdungeongame/recipes/dyed_yellow_oak_prone_bench.json
|
||||
de4141685038d2f050935b84390143d535f825ff data/eroticdungeongame/recipes/dyed_yellow_spruce_prone_bench.json
|
||||
d8dc7ed8ffb67161f9981c32e97921d0c9892d9d data/eroticdungeongame/recipes/dyed_yellow_warped_prone_bench.json
|
||||
601f6b09e68cc9d183b92435e8b598efb2e3a6e5 data/eroticdungeongame/recipes/dyed_black_acacia_prone_bench.json
|
||||
f630f33fbc0f84127451cd4689ba88de8780025b data/eroticdungeongame/recipes/dyed_black_bamboo_prone_bench.json
|
||||
8fdc7308c23d61413a7ba30c514edb68d6cbb817 data/eroticdungeongame/recipes/dyed_black_birch_prone_bench.json
|
||||
0fae93437c46008652bca380dfcb079c4d86c6bf data/eroticdungeongame/recipes/dyed_black_cherry_prone_bench.json
|
||||
9237af6180adc8da74be1253fac25355a53b2bac data/eroticdungeongame/recipes/dyed_black_crimson_prone_bench.json
|
||||
14ddc3379a62c91ec7ef1b599f33530d0d0597b6 data/eroticdungeongame/recipes/dyed_black_cuff_bed.json
|
||||
c59df529ed82843113a12327c9c19dd0c0b8fb3a data/eroticdungeongame/recipes/dyed_black_dark_oak_prone_bench.json
|
||||
3c895a3b21e89375d9df61c7c99f08994f48022c data/eroticdungeongame/recipes/dyed_black_jungle_prone_bench.json
|
||||
a236d9730b441467d35207661999b80cef961823 data/eroticdungeongame/recipes/dyed_black_mangrove_prone_bench.json
|
||||
3647cbdc58379d856d8f0c3f47e9229502dc6dc1 data/eroticdungeongame/recipes/dyed_black_oak_prone_bench.json
|
||||
678f5d6178430bf809aef0785eab27820fdf503a data/eroticdungeongame/recipes/dyed_black_spruce_prone_bench.json
|
||||
8a8ebcea172c97fb03bbfb68a2b6faea88abbcb4 data/eroticdungeongame/recipes/dyed_black_warped_prone_bench.json
|
||||
ebcb3d94e85bf1d6e2b09c3d54c914e71cccc6e2 data/eroticdungeongame/recipes/dyed_blue_acacia_prone_bench.json
|
||||
ca10589a745faca57a28790e9c8dfd837b42fe83 data/eroticdungeongame/recipes/dyed_blue_bamboo_prone_bench.json
|
||||
c13c3e3636e26eaf51fae7de8e4b921fe2672e1e data/eroticdungeongame/recipes/dyed_blue_birch_prone_bench.json
|
||||
968f6e8265cedcd6d5d433e9770a4eac41cff8f3 data/eroticdungeongame/recipes/dyed_blue_cherry_prone_bench.json
|
||||
e7b52d1588152b302be5f551c9178a8d4fc95906 data/eroticdungeongame/recipes/dyed_blue_crimson_prone_bench.json
|
||||
ca71befff93ef12a715f78f5f5b6f4ce5c12843b data/eroticdungeongame/recipes/dyed_blue_cuff_bed.json
|
||||
579597264dd1175d0cc745a3dd26f44cb2448094 data/eroticdungeongame/recipes/dyed_blue_dark_oak_prone_bench.json
|
||||
07eb7c6a9ce5f9bca3a68061b1fc790cca6d2b0d data/eroticdungeongame/recipes/dyed_blue_jungle_prone_bench.json
|
||||
652cc2611751cd3b2d17deb6a3eabdb7f14b3df9 data/eroticdungeongame/recipes/dyed_blue_mangrove_prone_bench.json
|
||||
efef2ca86c54bf34c093ac38775d9f411ea1864a data/eroticdungeongame/recipes/dyed_blue_oak_prone_bench.json
|
||||
f1c14c90bcfbb0ff197d8931f2943a10309d93ac data/eroticdungeongame/recipes/dyed_blue_spruce_prone_bench.json
|
||||
e0ddd17d2e1cf04648384f547013e5086adf43e7 data/eroticdungeongame/recipes/dyed_blue_warped_prone_bench.json
|
||||
21e39ac21429623656c60bc1e7c53c0f862221e5 data/eroticdungeongame/recipes/dyed_brown_acacia_prone_bench.json
|
||||
d3f5fdd35b95671068ee487160b37d03d06a804b data/eroticdungeongame/recipes/dyed_brown_bamboo_prone_bench.json
|
||||
8da49270f2225925f38c0d3a09f7ba1816513de6 data/eroticdungeongame/recipes/dyed_brown_birch_prone_bench.json
|
||||
1dad0654c458cd9f1890e56a714426e4bdfde7e8 data/eroticdungeongame/recipes/dyed_brown_cherry_prone_bench.json
|
||||
b07aa035fc856e5444f36eadbc07ecc18019aab9 data/eroticdungeongame/recipes/dyed_brown_crimson_prone_bench.json
|
||||
d907aed971ca7cc64f85c0ed182b4ecc227707ce data/eroticdungeongame/recipes/dyed_brown_cuff_bed.json
|
||||
5c77b2e512b91836813689c7dda57548ce07501e data/eroticdungeongame/recipes/dyed_brown_dark_oak_prone_bench.json
|
||||
fef3781cb3d96adc5e364565aaaa6d53bb375665 data/eroticdungeongame/recipes/dyed_brown_jungle_prone_bench.json
|
||||
d90a5647b5c08bd864482466f1b7de70b9029772 data/eroticdungeongame/recipes/dyed_brown_mangrove_prone_bench.json
|
||||
195984ba2be50b40c5ffc1cd2073562ff77f85e6 data/eroticdungeongame/recipes/dyed_brown_oak_prone_bench.json
|
||||
c485021007e9695c53cd8cbfc0d7358b35875c9b data/eroticdungeongame/recipes/dyed_brown_spruce_prone_bench.json
|
||||
a293624b04c4c61eb4dcd3ccbeee4e5eaca3df76 data/eroticdungeongame/recipes/dyed_brown_warped_prone_bench.json
|
||||
db35f7f6fb802ae5d28443d812fd7f0d128cea4b data/eroticdungeongame/recipes/dyed_cyan_acacia_prone_bench.json
|
||||
3c79c215b7e79d30928d038d0475a484666448b0 data/eroticdungeongame/recipes/dyed_cyan_bamboo_prone_bench.json
|
||||
b639f16173c4334d35b10f6fbeb8df9c4fb06606 data/eroticdungeongame/recipes/dyed_cyan_birch_prone_bench.json
|
||||
ddf58b04524b5fecdf9a61468b243bba94083423 data/eroticdungeongame/recipes/dyed_cyan_cherry_prone_bench.json
|
||||
29f06a67ce153a2dca60d0b33eb0688924633dc2 data/eroticdungeongame/recipes/dyed_cyan_crimson_prone_bench.json
|
||||
a8ce3f603e11ce7858e61634257c1db847a4e34f data/eroticdungeongame/recipes/dyed_cyan_cuff_bed.json
|
||||
6cadc196703ed097b5663433c9b815a4928d579f data/eroticdungeongame/recipes/dyed_cyan_dark_oak_prone_bench.json
|
||||
1c8afaac504b23d7fa7a973740e87b739a0bdc1a data/eroticdungeongame/recipes/dyed_cyan_jungle_prone_bench.json
|
||||
429c5001eb29054af4b5c90fb9a452ab39da6276 data/eroticdungeongame/recipes/dyed_cyan_mangrove_prone_bench.json
|
||||
d06e943d5ea25ce0dbe5af5fe5f1623d4e08a323 data/eroticdungeongame/recipes/dyed_cyan_oak_prone_bench.json
|
||||
14789f9f87193e575359684f402da3b183914867 data/eroticdungeongame/recipes/dyed_cyan_spruce_prone_bench.json
|
||||
01157a5a2a62a6f22d75c4703a02345e9f643e2e data/eroticdungeongame/recipes/dyed_cyan_warped_prone_bench.json
|
||||
f8a16e385f5dcbbd9fbb3a0f57c04312e78517f6 data/eroticdungeongame/recipes/dyed_gray_acacia_prone_bench.json
|
||||
70c4f72de7c8a024af6734598864a5054edeb597 data/eroticdungeongame/recipes/dyed_gray_bamboo_prone_bench.json
|
||||
cf046ee87321d14b02762bd92aedde31fa1e6020 data/eroticdungeongame/recipes/dyed_gray_birch_prone_bench.json
|
||||
3f46a0b0e015d241d8954682013645b0d301dd9a data/eroticdungeongame/recipes/dyed_gray_cherry_prone_bench.json
|
||||
0088e8f9943c35061fcf00ee243177a36d7ab22e data/eroticdungeongame/recipes/dyed_gray_crimson_prone_bench.json
|
||||
7212978ba45eb34b8dd46911d1ab1ae0236ef956 data/eroticdungeongame/recipes/dyed_gray_cuff_bed.json
|
||||
88ea0f4d285c82c135b1e30e7bef79a6760cded5 data/eroticdungeongame/recipes/dyed_gray_dark_oak_prone_bench.json
|
||||
9a7b46da152c257f6d44edf2663643324e050301 data/eroticdungeongame/recipes/dyed_gray_jungle_prone_bench.json
|
||||
a8cdc9af3f6136df6bb3287990fc7efe3729a84f data/eroticdungeongame/recipes/dyed_gray_mangrove_prone_bench.json
|
||||
c1b8caa48957b2d639dc61371d9be00cf0715de2 data/eroticdungeongame/recipes/dyed_gray_oak_prone_bench.json
|
||||
4e205e34d2fce046a8908b4d97076b2fb64bd221 data/eroticdungeongame/recipes/dyed_gray_spruce_prone_bench.json
|
||||
b2e928f5ec7f4b4ad8a52f14fc81f57973f60a55 data/eroticdungeongame/recipes/dyed_gray_warped_prone_bench.json
|
||||
a9b3e0cfe3cfc050bddf45f88a37b9d57821006c data/eroticdungeongame/recipes/dyed_green_acacia_prone_bench.json
|
||||
455737c5f6f489c64d1f60e9429454124dcae77e data/eroticdungeongame/recipes/dyed_green_bamboo_prone_bench.json
|
||||
d442f5386cc6b60660715fa7f5f7c7a1a67083ff data/eroticdungeongame/recipes/dyed_green_birch_prone_bench.json
|
||||
7b6b9e12b20bd3d2c9b3484b9887e8d0db4431fc data/eroticdungeongame/recipes/dyed_green_cherry_prone_bench.json
|
||||
86575ba9c94e40b7d37fc39d827c73e91b48231b data/eroticdungeongame/recipes/dyed_green_crimson_prone_bench.json
|
||||
27a4eb540046ad364d0ec2909ecc36905ca03ca3 data/eroticdungeongame/recipes/dyed_green_cuff_bed.json
|
||||
2a10f33dac4e5b16d40f49fe332a9dfbe341e499 data/eroticdungeongame/recipes/dyed_green_dark_oak_prone_bench.json
|
||||
4b89310176e528b1cc569302f8721d12d03f6804 data/eroticdungeongame/recipes/dyed_green_jungle_prone_bench.json
|
||||
ae3ebf6aeca41ba752eac94114adfc5aef2c7159 data/eroticdungeongame/recipes/dyed_green_mangrove_prone_bench.json
|
||||
96c9a68d55c0a76cbd2fe364ad5aa78600ab8465 data/eroticdungeongame/recipes/dyed_green_oak_prone_bench.json
|
||||
01a3464dbdbbe41c18a8fe6622c3edcae87a9c58 data/eroticdungeongame/recipes/dyed_green_spruce_prone_bench.json
|
||||
7460821eda1a4193384cdbd8732bf1aec6346518 data/eroticdungeongame/recipes/dyed_green_warped_prone_bench.json
|
||||
3ade80175614b0704c95cf50cd67b0375264363e data/eroticdungeongame/recipes/dyed_light_blue_acacia_prone_bench.json
|
||||
861d8807f9744282a4f85b973235b2b613d02800 data/eroticdungeongame/recipes/dyed_light_blue_bamboo_prone_bench.json
|
||||
8cac839c48aa21d084f0912dde36789005e66b56 data/eroticdungeongame/recipes/dyed_light_blue_birch_prone_bench.json
|
||||
dcadddf6b206c432623b116a35bc39ee68958b3a data/eroticdungeongame/recipes/dyed_light_blue_cherry_prone_bench.json
|
||||
899a5260a84d210c5a0dff2a22a843b742178de4 data/eroticdungeongame/recipes/dyed_light_blue_crimson_prone_bench.json
|
||||
49c9ffea1dd1dc2af28f72f937b8c6d46eb35e6f data/eroticdungeongame/recipes/dyed_light_blue_cuff_bed.json
|
||||
2ee60ca6156969e8e716607e50350f8dac9767ae data/eroticdungeongame/recipes/dyed_light_blue_dark_oak_prone_bench.json
|
||||
8c9a027369ff3eafb48d9289f9a165a2bca5eb5e data/eroticdungeongame/recipes/dyed_light_blue_jungle_prone_bench.json
|
||||
ce95ed92191defb1e19938626d7c7b58e03ecd47 data/eroticdungeongame/recipes/dyed_light_blue_mangrove_prone_bench.json
|
||||
dbd672d1add300bff8d029499a58fd982932d5fc data/eroticdungeongame/recipes/dyed_light_blue_oak_prone_bench.json
|
||||
b64c3681c50695e172ccd7ddbc3b3d81ab903aa6 data/eroticdungeongame/recipes/dyed_light_blue_spruce_prone_bench.json
|
||||
c71e0922d47cf4ba32b85c0de9676f877fa670dc data/eroticdungeongame/recipes/dyed_light_blue_warped_prone_bench.json
|
||||
880da8d8bd44f50583c39e93341f7dc118d18b68 data/eroticdungeongame/recipes/dyed_light_gray_acacia_prone_bench.json
|
||||
774d63d45788e5aa28f804b538e219c39dfdb1f7 data/eroticdungeongame/recipes/dyed_light_gray_bamboo_prone_bench.json
|
||||
7fc2368a39f47c7a7c942b974b796db0ff17a12f data/eroticdungeongame/recipes/dyed_light_gray_birch_prone_bench.json
|
||||
6c6ccf2f19cf59e6dc03a2d04defd7bf6e8c167f data/eroticdungeongame/recipes/dyed_light_gray_cherry_prone_bench.json
|
||||
c77fdbb59f095dc7b57b4bc85b3d86416e33365c data/eroticdungeongame/recipes/dyed_light_gray_crimson_prone_bench.json
|
||||
485cbe17dca64b7e285d4e66d204c7ca73c5fe35 data/eroticdungeongame/recipes/dyed_light_gray_cuff_bed.json
|
||||
ea0e14624a2058a642af436a3cc249b3a672582f data/eroticdungeongame/recipes/dyed_light_gray_dark_oak_prone_bench.json
|
||||
29a17838296d981651320407655d9ea634eec2d9 data/eroticdungeongame/recipes/dyed_light_gray_jungle_prone_bench.json
|
||||
1e7d986efbe83b7d022f3c6f78045a927ab1d9dd data/eroticdungeongame/recipes/dyed_light_gray_mangrove_prone_bench.json
|
||||
2f9f211ba606001245ad8291b749127e58794910 data/eroticdungeongame/recipes/dyed_light_gray_oak_prone_bench.json
|
||||
9cfc4ab3f982acf7c610b7bf2ff8a8bd83757338 data/eroticdungeongame/recipes/dyed_light_gray_spruce_prone_bench.json
|
||||
610a49550e73cd28bf967f223f1d17e3ac690cdf data/eroticdungeongame/recipes/dyed_light_gray_warped_prone_bench.json
|
||||
482a604bbc0b7fabd66fbec993a84fd7f10ee7a6 data/eroticdungeongame/recipes/dyed_lime_acacia_prone_bench.json
|
||||
d2631430be4e1bc8df15c6ff64099cec5792e5e8 data/eroticdungeongame/recipes/dyed_lime_bamboo_prone_bench.json
|
||||
4e090d43ad997f63a403a8ac0293b4113c8a7434 data/eroticdungeongame/recipes/dyed_lime_birch_prone_bench.json
|
||||
530484cd340c14dabfe4804bb324508779b4779b data/eroticdungeongame/recipes/dyed_lime_cherry_prone_bench.json
|
||||
1718b26a990601a54d237789c10671b5ea17cd84 data/eroticdungeongame/recipes/dyed_lime_crimson_prone_bench.json
|
||||
010dd8f38a1c6a6d1ecfa2fdaa1d42e1ec39794d data/eroticdungeongame/recipes/dyed_lime_cuff_bed.json
|
||||
94c3d8578b1c4afb6be0349b5ec026c32a592898 data/eroticdungeongame/recipes/dyed_lime_dark_oak_prone_bench.json
|
||||
89138322655eac5cdd5be095c29c5c0a7d2f6488 data/eroticdungeongame/recipes/dyed_lime_jungle_prone_bench.json
|
||||
51850750d0732ccfba24814a40e7dd65f4494f87 data/eroticdungeongame/recipes/dyed_lime_mangrove_prone_bench.json
|
||||
ba5e8189a8510c58f1ee0f98a7dd7ef5785951b8 data/eroticdungeongame/recipes/dyed_lime_oak_prone_bench.json
|
||||
1e22a0aebbc24cba6f980efc3f0d6fc64b3eb4d1 data/eroticdungeongame/recipes/dyed_lime_spruce_prone_bench.json
|
||||
b6c40ffe61a53c33369e351bececbd6fb3815251 data/eroticdungeongame/recipes/dyed_lime_warped_prone_bench.json
|
||||
841a3def9cf231bf871a9994beff949a1c394721 data/eroticdungeongame/recipes/dyed_magenta_acacia_prone_bench.json
|
||||
710ca7939bd9a0338d855e507882e60e5aaeaa93 data/eroticdungeongame/recipes/dyed_magenta_bamboo_prone_bench.json
|
||||
db8a979a3495d3b9fbe4f834d520e73f69c0c03c data/eroticdungeongame/recipes/dyed_magenta_birch_prone_bench.json
|
||||
9adeb5de72faaeb980e718ff33145c9e81b11285 data/eroticdungeongame/recipes/dyed_magenta_cherry_prone_bench.json
|
||||
fdc6ffcbe603a03907b1404a91c834e5e3ae39ef data/eroticdungeongame/recipes/dyed_magenta_crimson_prone_bench.json
|
||||
73e0a92a34e1b2e2006387251498ca3cd6ca817b data/eroticdungeongame/recipes/dyed_magenta_cuff_bed.json
|
||||
f521e2d450f305fe72a98f9517c6d00ac5b80cbf data/eroticdungeongame/recipes/dyed_magenta_dark_oak_prone_bench.json
|
||||
2462681ddf55c9bb5c6e3e3d899c366ae0ec9fb6 data/eroticdungeongame/recipes/dyed_magenta_jungle_prone_bench.json
|
||||
07ad74b5869e20fe75ef44acd382f8d98d9a9e8d data/eroticdungeongame/recipes/dyed_magenta_mangrove_prone_bench.json
|
||||
075fe2c0a3dc6f69d3eb35d98a69c1441aed7296 data/eroticdungeongame/recipes/dyed_magenta_oak_prone_bench.json
|
||||
6846e38c6d8e115a9e208aa594031091f7ad60a2 data/eroticdungeongame/recipes/dyed_magenta_spruce_prone_bench.json
|
||||
b08281b01ab2daae3b5c7e1f1ce819c928edf96f data/eroticdungeongame/recipes/dyed_magenta_warped_prone_bench.json
|
||||
9e07cf94bd54d22fe233c474436585915ade0510 data/eroticdungeongame/recipes/dyed_orange_acacia_prone_bench.json
|
||||
eeb0f5c172c4955947bee2fa7715ee884a6206ce data/eroticdungeongame/recipes/dyed_orange_bamboo_prone_bench.json
|
||||
b428fda8115942c8f892a1696f919129ed61b1c2 data/eroticdungeongame/recipes/dyed_orange_birch_prone_bench.json
|
||||
8f9bb6cc43dc818d7c8f7287a9651428bbace749 data/eroticdungeongame/recipes/dyed_orange_cherry_prone_bench.json
|
||||
eb912c31c89da72e26bc640128e59369346df7cb data/eroticdungeongame/recipes/dyed_orange_crimson_prone_bench.json
|
||||
8022c0f5d9d6adc9c8bce853195891d835f8fad1 data/eroticdungeongame/recipes/dyed_orange_cuff_bed.json
|
||||
9a81fcbaefb2916529204a93d5411ebd8e223a0c data/eroticdungeongame/recipes/dyed_orange_dark_oak_prone_bench.json
|
||||
843169fb4d0227f003996de855c35f354999128b data/eroticdungeongame/recipes/dyed_orange_jungle_prone_bench.json
|
||||
362e21c4420f7b574a53fec0333afa2c18663752 data/eroticdungeongame/recipes/dyed_orange_mangrove_prone_bench.json
|
||||
83ba332530173f1e350c5296c452161466cb41e9 data/eroticdungeongame/recipes/dyed_orange_oak_prone_bench.json
|
||||
b775560df2de9965b7f67abf0657c3354d12cbb5 data/eroticdungeongame/recipes/dyed_orange_spruce_prone_bench.json
|
||||
3671ea307d0ba520e35159e18395da8d62973337 data/eroticdungeongame/recipes/dyed_orange_warped_prone_bench.json
|
||||
1c5776931c1bc01825e7da610f14e5d8491287f1 data/eroticdungeongame/recipes/dyed_pink_acacia_prone_bench.json
|
||||
acf98cebbd3109560858a205c5a7d4dbb23e0d84 data/eroticdungeongame/recipes/dyed_pink_bamboo_prone_bench.json
|
||||
cd0323b3c38c6062d5c785c744ec0ccc1c98cdb4 data/eroticdungeongame/recipes/dyed_pink_birch_prone_bench.json
|
||||
5454520f5adfe05ba1a917d9c564ea769833641f data/eroticdungeongame/recipes/dyed_pink_cherry_prone_bench.json
|
||||
2d74196b65bca29c0d27c2bd0f8f308a70fe24bb data/eroticdungeongame/recipes/dyed_pink_crimson_prone_bench.json
|
||||
510396c61d3c8e99a01a3c0637ede5b90c0d678b data/eroticdungeongame/recipes/dyed_pink_cuff_bed.json
|
||||
68b5c8c11a1bbb96ad96d3da7bd0cf7022c1e34d data/eroticdungeongame/recipes/dyed_pink_dark_oak_prone_bench.json
|
||||
75e12cc1059b65fed0408a9c91876d9dd24b232c data/eroticdungeongame/recipes/dyed_pink_jungle_prone_bench.json
|
||||
e52cc65a66b96a77bfd06cb0157094124ddbfe59 data/eroticdungeongame/recipes/dyed_pink_mangrove_prone_bench.json
|
||||
27e4a88fcd9090ed03c43688e2f439cba688dd66 data/eroticdungeongame/recipes/dyed_pink_oak_prone_bench.json
|
||||
22a7a7dbc540ca4e3b9158757d6bf15f510de50f data/eroticdungeongame/recipes/dyed_pink_spruce_prone_bench.json
|
||||
676c33a193320fbc6950818ed9f580e25fd2abf3 data/eroticdungeongame/recipes/dyed_pink_warped_prone_bench.json
|
||||
ecdad40f877322b48b28246aa98d2a4de7c165d8 data/eroticdungeongame/recipes/dyed_purple_acacia_prone_bench.json
|
||||
8d78843cd73ed301603faa419b3c37046b6ab479 data/eroticdungeongame/recipes/dyed_purple_bamboo_prone_bench.json
|
||||
5acd94c7c4b24f43b921ea7a9987f37ded66e303 data/eroticdungeongame/recipes/dyed_purple_birch_prone_bench.json
|
||||
e545d969cb0bf3f35fd7820f34eb714bbe469464 data/eroticdungeongame/recipes/dyed_purple_cherry_prone_bench.json
|
||||
6061b65afb1dba68c258593678dc59575ca17040 data/eroticdungeongame/recipes/dyed_purple_crimson_prone_bench.json
|
||||
808dd3e2df4416f68fea0a38f3a801b3ea3061d4 data/eroticdungeongame/recipes/dyed_purple_cuff_bed.json
|
||||
991a659d1183047d2db2d913f00ced89357fe4ef data/eroticdungeongame/recipes/dyed_purple_dark_oak_prone_bench.json
|
||||
f4ac2a5710bef1124b71eebfd4460475b0829f23 data/eroticdungeongame/recipes/dyed_purple_jungle_prone_bench.json
|
||||
486cc6e1669af322787b5eb964494f2c9ff60067 data/eroticdungeongame/recipes/dyed_purple_mangrove_prone_bench.json
|
||||
5fc63203c9703f5abefe77c071fbd1e7736e579d data/eroticdungeongame/recipes/dyed_purple_oak_prone_bench.json
|
||||
a31273e5e1e9de518420cebe7276122bdb2e8b0b data/eroticdungeongame/recipes/dyed_purple_spruce_prone_bench.json
|
||||
5d3974bae93a5b3d4fcdd2f47579058bc3ddcbfe data/eroticdungeongame/recipes/dyed_purple_warped_prone_bench.json
|
||||
9f52af18d28eabc33761b77ce022e59160ff259a data/eroticdungeongame/recipes/dyed_red_acacia_prone_bench.json
|
||||
87596453a52c73a42c1e0deef2ba302747aea326 data/eroticdungeongame/recipes/dyed_red_bamboo_prone_bench.json
|
||||
09814716d75f2bcab86b27eb82852a341135cc27 data/eroticdungeongame/recipes/dyed_red_birch_prone_bench.json
|
||||
20a243c800e3f86d31e9579ccf7279750bdad12b data/eroticdungeongame/recipes/dyed_red_cherry_prone_bench.json
|
||||
eece846e7cfcfe04502d56cc0a053a7277493dbf data/eroticdungeongame/recipes/dyed_red_crimson_prone_bench.json
|
||||
5d1d64d0c297f3aae7c48e19341c98040f681fa7 data/eroticdungeongame/recipes/dyed_red_cuff_bed.json
|
||||
147cb381c9c951ecd0e538662b40d103168feaa4 data/eroticdungeongame/recipes/dyed_red_dark_oak_prone_bench.json
|
||||
2754426571ae8bd7ae96193a14c2d9845e49613b data/eroticdungeongame/recipes/dyed_red_jungle_prone_bench.json
|
||||
25d3ffae438a5f62267ae2291586801f285da994 data/eroticdungeongame/recipes/dyed_red_mangrove_prone_bench.json
|
||||
08306612ac3bbb5713d80bc6e975cc77253b0afb data/eroticdungeongame/recipes/dyed_red_oak_prone_bench.json
|
||||
8be4f318a8886a690253e60623ced642e45941a1 data/eroticdungeongame/recipes/dyed_red_spruce_prone_bench.json
|
||||
d0ff293a4487be9357fa1f41579f85e9563c4110 data/eroticdungeongame/recipes/dyed_red_warped_prone_bench.json
|
||||
fac7ff6604a45e234c897e3bd487040586103c71 data/eroticdungeongame/recipes/dyed_white_acacia_prone_bench.json
|
||||
462ba6c4c7bd7d12e10ce6f8ce5d32533c8ca8f3 data/eroticdungeongame/recipes/dyed_white_bamboo_prone_bench.json
|
||||
1ba785718cb22e06384e66576a0882039360dc89 data/eroticdungeongame/recipes/dyed_white_birch_prone_bench.json
|
||||
74a75fa0f374a9454de02dc005c2b0757e1b9575 data/eroticdungeongame/recipes/dyed_white_cherry_prone_bench.json
|
||||
1a6ad41d7d8ba1a57dce4c71f04941ab007066c4 data/eroticdungeongame/recipes/dyed_white_crimson_prone_bench.json
|
||||
b1fc1d465f7e740ff059abcb96502716163b8115 data/eroticdungeongame/recipes/dyed_white_cuff_bed.json
|
||||
a69b76534622b6cd3d82b9dac2a54b59a4bf5e4b data/eroticdungeongame/recipes/dyed_white_dark_oak_prone_bench.json
|
||||
487e1c248e28fd66539a4ea7409032ba7e57baff data/eroticdungeongame/recipes/dyed_white_jungle_prone_bench.json
|
||||
ae5111e2cd0cbd65b401064c9bc1f6602d6ae16f data/eroticdungeongame/recipes/dyed_white_mangrove_prone_bench.json
|
||||
96e911064c712dbf05f2128b6b001d378846f681 data/eroticdungeongame/recipes/dyed_white_oak_prone_bench.json
|
||||
a70408f36dc05cc46b5cd9d7814a2bce70081cf6 data/eroticdungeongame/recipes/dyed_white_spruce_prone_bench.json
|
||||
0afa4eedb0576ec0532d88430bc32546d24795a3 data/eroticdungeongame/recipes/dyed_white_warped_prone_bench.json
|
||||
1b29aa934b05e9031ef68d1feaf4d29fef54d118 data/eroticdungeongame/recipes/dyed_yellow_acacia_prone_bench.json
|
||||
2b9de6a710ec29843aa180724761954148e18d57 data/eroticdungeongame/recipes/dyed_yellow_bamboo_prone_bench.json
|
||||
d7ed6c757f5fc13196be8514a4f7dbd9312080fd data/eroticdungeongame/recipes/dyed_yellow_birch_prone_bench.json
|
||||
f0ac4dffc6eb10c61079a1f5d6686eda96c1847f data/eroticdungeongame/recipes/dyed_yellow_cherry_prone_bench.json
|
||||
03649a88782da7104801436d4b853a61c204605a data/eroticdungeongame/recipes/dyed_yellow_crimson_prone_bench.json
|
||||
c9989225926048b4a9c2c0b038ac954a7933ba2b data/eroticdungeongame/recipes/dyed_yellow_cuff_bed.json
|
||||
d37e44cfdb178d50a856e7ca718d1e3a438206ff data/eroticdungeongame/recipes/dyed_yellow_dark_oak_prone_bench.json
|
||||
ec5bec12203a3aeec9a60bda45bd09f82154a746 data/eroticdungeongame/recipes/dyed_yellow_jungle_prone_bench.json
|
||||
1a993b18c4a1e09e98aad927e19b6a32d6e1bdc1 data/eroticdungeongame/recipes/dyed_yellow_mangrove_prone_bench.json
|
||||
7d48f5f32a7e795fcebda3ccbb4577129a1c2767 data/eroticdungeongame/recipes/dyed_yellow_oak_prone_bench.json
|
||||
cd34e83315b72e5ff3075898c01ded530f34c62c data/eroticdungeongame/recipes/dyed_yellow_spruce_prone_bench.json
|
||||
064a5f801b08373812586f91f8e962713b8de184 data/eroticdungeongame/recipes/dyed_yellow_warped_prone_bench.json
|
||||
fae3f99bb72a946a91ec2795b3cda8dabdcddb5a data/eroticdungeongame/recipes/end_rod_love_machine.json
|
||||
c6b70a2a60bfc3a739777244e0f2b3a395f4ffe4 data/eroticdungeongame/recipes/gray_acacia_prone_bench.json
|
||||
bb05b2a941bd69da7bafa0cb7f8b137f8af21515 data/eroticdungeongame/recipes/gray_bamboo_prone_bench.json
|
||||
bfbc49e5c8a02771f1728c2e30601324152bf5fa data/eroticdungeongame/recipes/gray_birch_prone_bench.json
|
||||
|
|
@ -814,6 +821,8 @@ acea1ee2a120fb4596cdc944a28850690e7defb0 data/eroticdungeongame/recipes/jungle_r
|
|||
4fb71cbaebf6b52c74c1d42a83f10e9a6d9ff2ef data/eroticdungeongame/recipes/jungle_spanish_donkey.json
|
||||
702e899bf10fad8debbe27038fa51d40ed2ae209 data/eroticdungeongame/recipes/jungle_wall_rack.json
|
||||
29d5c206f563944a282900be8a1fa9d9c38c9ae5 data/eroticdungeongame/recipes/jungle_x_cross.json
|
||||
868b3da2a47ab3bc8f884462dee55fe7285056ec data/eroticdungeongame/recipes/key_copy.json
|
||||
1ab49103f1036f4d4b669637040657ae69835582 data/eroticdungeongame/recipes/lightning_rod_love_machine.json
|
||||
aeb442046c594e6c92bb68eb3070e1b70bac4b2d data/eroticdungeongame/recipes/light_blue_acacia_prone_bench.json
|
||||
3692eacdee81d9bf2cfff83215799f8be55069b2 data/eroticdungeongame/recipes/light_blue_bamboo_prone_bench.json
|
||||
c7ac1a35aafc85088cfc1f17c29a391be4a7a008 data/eroticdungeongame/recipes/light_blue_birch_prone_bench.json
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
// 1.20.1 2026-01-21T18:53:09.901699 Tags for minecraft:block mod id eroticdungeongame
|
||||
// 1.20.1 2026-01-26T15:38:37.705265 Tags for minecraft:block mod id eroticdungeongame
|
||||
fc8597d16f1d5e2aa1929dcd7f7006082ecbdc19 data/carryon/tags/blocks/block_blacklist.json
|
||||
e40838488876c793eebc99551a043919ebfc7dc2 data/eroticdungeongame/tags/blocks/block/crux.json
|
||||
f0d5259aa0b6aaa18079ee0c82c7a7d15c86c36b data/eroticdungeongame/tags/blocks/block/cuff_bed.json
|
||||
71d33a640eb95b9a522cec58cb7daa17b3a416bb data/eroticdungeongame/tags/blocks/block/cuff_pole.json
|
||||
20fc77be96d63d330854008498c68a56f36ab34a data/eroticdungeongame/tags/blocks/block/hanging_post.json
|
||||
4dd3264546aea8b3b10b946344acbf5bb1d2489f data/eroticdungeongame/tags/blocks/block/petrine_cross.json
|
||||
29a39086929f185c8a8c00992b42ddacf4036419 data/eroticdungeongame/tags/blocks/block/pillory.json
|
||||
6717164c7de7f7cbe0f17fa71b2fb5fefe88811b data/eroticdungeongame/tags/blocks/block/prone_bench.json
|
||||
f3fa34ca89c2a165d96206bd4bdc3d5197101e68 data/eroticdungeongame/tags/blocks/block/rack.json
|
||||
8a7f12b8cc8b0c5919748981dfdb6523a5ae554d data/eroticdungeongame/tags/blocks/block/crux.json
|
||||
77ae920f35c61fe2208254edb1a59e3b3338f6a8 data/eroticdungeongame/tags/blocks/block/cuff_bed.json
|
||||
d7f6497693c6e7bd8c3d77bc7f16f0620c45cd22 data/eroticdungeongame/tags/blocks/block/cuff_pole.json
|
||||
c486b9aac94fac09a2bebbeadc9f05701ee491d7 data/eroticdungeongame/tags/blocks/block/hanging_post.json
|
||||
f3701dd216a309143602c648b7f467512f348765 data/eroticdungeongame/tags/blocks/block/petrine_cross.json
|
||||
f88ab03ca8c6e3da9d2d0bd8c0f46e0d07851dce data/eroticdungeongame/tags/blocks/block/pillory.json
|
||||
7041656a80604e3905a250a6595a0ad722879942 data/eroticdungeongame/tags/blocks/block/prone_bench.json
|
||||
4acb68b95a6564fbf171838ed22c386feedd0c8a data/eroticdungeongame/tags/blocks/block/rack.json
|
||||
b477cda3e4f97d6fa55f8df5a2fa3a8f5dcb9880 data/eroticdungeongame/tags/blocks/block/seat.json
|
||||
8ed2e40dacfc0bff2636722bad6f64d6927c3eee data/eroticdungeongame/tags/blocks/block/spanish_donkey.json
|
||||
35fcc769459ed834004c16839259091f04b3b1fe data/eroticdungeongame/tags/blocks/block/wall_rack.json
|
||||
63483b4948f51aa191037d6960a65d6431e9bcbb data/eroticdungeongame/tags/blocks/block/x_cross.json
|
||||
0ef6eedc7bd5a7b074a16ecf63f75279e48c84ed data/eroticdungeongame/tags/blocks/block/spanish_donkey.json
|
||||
532f956e229f967e87a5617b65f0e3732d72ee2a data/eroticdungeongame/tags/blocks/block/wall_rack.json
|
||||
48c18025e08145e05cef1e30fb4c20de523eba93 data/eroticdungeongame/tags/blocks/block/x_cross.json
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
// 1.20.1 2026-01-19T14:45:00.3259701 Languages: en_us
|
||||
f4e485f900d320dcd80db87353b686c78a0bca01 assets/eroticdungeongame/lang/en_us.json
|
||||
// 1.20.1 2026-01-26T15:38:37.749787 Languages: en_us
|
||||
0078919258e1945b4c14a06427eedcdfa1bef26e assets/eroticdungeongame/lang/en_us.json
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
// 1.20.1 2026-01-21T18:53:09.8880234 Tags for minecraft:item mod id eroticdungeongame
|
||||
e40838488876c793eebc99551a043919ebfc7dc2 data/eroticdungeongame/tags/items/item/crux.json
|
||||
f0d5259aa0b6aaa18079ee0c82c7a7d15c86c36b data/eroticdungeongame/tags/items/item/cuff_bed.json
|
||||
71d33a640eb95b9a522cec58cb7daa17b3a416bb data/eroticdungeongame/tags/items/item/cuff_pole.json
|
||||
20fc77be96d63d330854008498c68a56f36ab34a data/eroticdungeongame/tags/items/item/hanging_post.json
|
||||
4dd3264546aea8b3b10b946344acbf5bb1d2489f data/eroticdungeongame/tags/items/item/petrine_cross.json
|
||||
29a39086929f185c8a8c00992b42ddacf4036419 data/eroticdungeongame/tags/items/item/pillory.json
|
||||
6717164c7de7f7cbe0f17fa71b2fb5fefe88811b data/eroticdungeongame/tags/items/item/prone_bench.json
|
||||
f3fa34ca89c2a165d96206bd4bdc3d5197101e68 data/eroticdungeongame/tags/items/item/rack.json
|
||||
// 1.20.1 2026-01-26T15:38:37.6866021 Tags for minecraft:item mod id eroticdungeongame
|
||||
8a7f12b8cc8b0c5919748981dfdb6523a5ae554d data/eroticdungeongame/tags/items/item/crux.json
|
||||
77ae920f35c61fe2208254edb1a59e3b3338f6a8 data/eroticdungeongame/tags/items/item/cuff_bed.json
|
||||
d7f6497693c6e7bd8c3d77bc7f16f0620c45cd22 data/eroticdungeongame/tags/items/item/cuff_pole.json
|
||||
c486b9aac94fac09a2bebbeadc9f05701ee491d7 data/eroticdungeongame/tags/items/item/hanging_post.json
|
||||
f3701dd216a309143602c648b7f467512f348765 data/eroticdungeongame/tags/items/item/petrine_cross.json
|
||||
f88ab03ca8c6e3da9d2d0bd8c0f46e0d07851dce data/eroticdungeongame/tags/items/item/pillory.json
|
||||
7041656a80604e3905a250a6595a0ad722879942 data/eroticdungeongame/tags/items/item/prone_bench.json
|
||||
4acb68b95a6564fbf171838ed22c386feedd0c8a data/eroticdungeongame/tags/items/item/rack.json
|
||||
74ce7d8ada54fe811400d6fe88991738c2531c59 data/eroticdungeongame/tags/items/item/seat.json
|
||||
8ed2e40dacfc0bff2636722bad6f64d6927c3eee data/eroticdungeongame/tags/items/item/spanish_donkey.json
|
||||
35fcc769459ed834004c16839259091f04b3b1fe data/eroticdungeongame/tags/items/item/wall_rack.json
|
||||
63483b4948f51aa191037d6960a65d6431e9bcbb data/eroticdungeongame/tags/items/item/x_cross.json
|
||||
0ef6eedc7bd5a7b074a16ecf63f75279e48c84ed data/eroticdungeongame/tags/items/item/spanish_donkey.json
|
||||
532f956e229f967e87a5617b65f0e3732d72ee2a data/eroticdungeongame/tags/items/item/wall_rack.json
|
||||
48c18025e08145e05cef1e30fb4c20de523eba93 data/eroticdungeongame/tags/items/item/x_cross.json
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
// 1.20.1 2026-01-21T18:53:09.8930239 Animations: eroticdungeongame
|
||||
5484f264574444488f6d033c08123294caad4d0f data/eroticdungeongame/ac_animations/crux_pose_01.anim.json
|
||||
// 1.20.1 2026-01-25T12:33:52.9383713 Animations: eroticdungeongame
|
||||
bb83803614a52e528131568c88603569b958ce60 data/eroticdungeongame/ac_animations/crux_pose_01.anim.json
|
||||
b2d8b86a080be27bda117068b66441e0960dbb0e data/eroticdungeongame/ac_animations/cuff_bed_pose_01.anim.json
|
||||
ded7d27ff4f613845c73d0b372a4236f1532ab13 data/eroticdungeongame/ac_animations/cuff_pole_pose_01.anim.json
|
||||
40d9f97da849af97a3d8078bb842992d3b724675 data/eroticdungeongame/ac_animations/cuff_pole_pose_01.anim.json
|
||||
f0d978661767e243cb14f21b69daa731f6fe7205 data/eroticdungeongame/ac_animations/hanging_post_pose_01.anim.json
|
||||
c5cae85f8aa536d3d31f5bdc4ed26c7d80452c59 data/eroticdungeongame/ac_animations/iron_cage_pose_01.anim.json
|
||||
2ddfd5041dac18fb52b6d885c49a44ea5026908a data/eroticdungeongame/ac_animations/petrine_cross_pose_01.anim.json
|
||||
769ff4b13b522034a249fa4944a45dab6270d387 data/eroticdungeongame/ac_animations/pillory_pose_01.anim.json
|
||||
a8138f89604d650c54410a50be3a2ffa009fa82e data/eroticdungeongame/ac_animations/pillory_pose_01.anim.json
|
||||
fb07a856742e01d9465000cbdaba0751e14d30fe data/eroticdungeongame/ac_animations/prone_bench_pose_01.anim.json
|
||||
a2c7f3f65ef5d45b274131b382a5fa9a737b387f data/eroticdungeongame/ac_animations/rack_pose_01.anim.json
|
||||
5f937919a05a7bb1406a95f52bfec0609e169775 data/eroticdungeongame/ac_animations/spanish_donkey_pose_01.anim.json
|
||||
|
|
|
|||
|
|
@ -0,0 +1,96 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=east,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=north,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=north,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=north,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=south,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=up,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=up,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=up,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=up,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=down,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 270
|
||||
},
|
||||
"facing=east,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=north,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=north,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=north,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine"
|
||||
},
|
||||
"facing=south,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 180
|
||||
},
|
||||
"facing=up,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=up,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=up,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=up,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"x": 90
|
||||
},
|
||||
"facing=west,powered=false,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,powered=false,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,powered=true,waterlogged=false": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,powered=true,waterlogged=true": {
|
||||
"model": "eroticdungeongame:block/love_machine",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -102,6 +102,7 @@
|
|||
"block.eroticdungeongame.dark_oak_wall_rack": "Dark Oak Wall Rack",
|
||||
"block.eroticdungeongame.dark_oak_x_cross": "Dark Oak X Cross",
|
||||
"block.eroticdungeongame.dungeon_crafting_table": "Dungeon Crafting Table",
|
||||
"block.eroticdungeongame.end_rod_love_machine": "Love Machine",
|
||||
"block.eroticdungeongame.gray_acacia_prone_bench": "Gray Acacia Prone Bench",
|
||||
"block.eroticdungeongame.gray_bamboo_prone_bench": "Gray Bamboo Prone Bench",
|
||||
"block.eroticdungeongame.gray_birch_prone_bench": "Gray Birch Prone Bench",
|
||||
|
|
@ -160,6 +161,7 @@
|
|||
"block.eroticdungeongame.light_gray_oak_prone_bench": "Light Gray Oak Prone Bench",
|
||||
"block.eroticdungeongame.light_gray_spruce_prone_bench": "Light Gray Spruce Prone Bench",
|
||||
"block.eroticdungeongame.light_gray_warped_prone_bench": "Light Gray Warped Prone Bench",
|
||||
"block.eroticdungeongame.lightning_rod_love_machine": "Love Machine",
|
||||
"block.eroticdungeongame.lime_acacia_prone_bench": "Lime Acacia Prone Bench",
|
||||
"block.eroticdungeongame.lime_bamboo_prone_bench": "Lime Bamboo Prone Bench",
|
||||
"block.eroticdungeongame.lime_birch_prone_bench": "Lime Birch Prone Bench",
|
||||
|
|
@ -293,14 +295,90 @@
|
|||
"block.eroticdungeongame.yellow_spruce_prone_bench": "Yellow Spruce Prone Bench",
|
||||
"block.eroticdungeongame.yellow_warped_prone_bench": "Yellow Warped Prone Bench",
|
||||
"container.eroticdungeongame.crafting_table": "Dungeon Crafting Table",
|
||||
"death.attack.fucked_0": "%s was fucked to die",
|
||||
"death.attack.fucked_0.entity": "%s was fucked to die by %s",
|
||||
"death.attack.fucked_1": "%s was killed by being stabbed",
|
||||
"death.attack.fucked_1.entity": "%s was killed by being stabbed with %s",
|
||||
"death.attack.whip_0": "%s was whipped to death",
|
||||
"death.attack.whip_0.entity": "%s was whipped to death by %s",
|
||||
"death.attack.whip_1": "%s couldn't survive the whipping",
|
||||
"death.attack.whip_1.entity": "%s was mercilessly whipped by %s",
|
||||
"death.attack.whip_2": "%s collapsed under the lash",
|
||||
"death.attack.whip_2.entity": "%s collapsed under %s's whip",
|
||||
"description.eroticdungeongame.key_content": "Device Key: ",
|
||||
"emi.category.eroticdungeongame.dungeon_crafting_table": "Dungeon Crafting Table",
|
||||
"enchantment.eroticdungeongame.carrot_and_stick": "Carrot And Stick",
|
||||
"entity.eroticdungeongame.seat": "Seat",
|
||||
"entity.minecraft.villager.eroticdungeongame.dungeon_craftsman": "Dungeon Craftsman",
|
||||
"eroticdungeongame.message.key.failed.mismatch": "This key is mismatched with the current device",
|
||||
"eroticdungeongame.message.key.success.locked": "Successfully locked the device",
|
||||
"eroticdungeongame.message.key.success.unlock": "Successfully unlocked the device",
|
||||
"eroticdungeongame.message.quit.failed.locked": "Failed to unride the device / release player: this device is locked",
|
||||
"eroticdungeongame.name": "Erotic Dungeon",
|
||||
"gui.eroticdungeon.axis.x": "X",
|
||||
"gui.eroticdungeon.axis.y": "Y",
|
||||
"gui.eroticdungeon.axis.z": "Z",
|
||||
"gui.eroticdungeon.direction.negative": "-",
|
||||
"gui.eroticdungeon.direction.positive": "+",
|
||||
"gui.eroticdungeon.offset_config.apply": "Apply",
|
||||
"gui.eroticdungeon.offset_config.close": "Close",
|
||||
"gui.eroticdungeon.offset_config.enable_offset": "Enable Offset",
|
||||
"gui.eroticdungeon.offset_config.offset_x": "Offset X",
|
||||
"gui.eroticdungeon.offset_config.offset_y": "Offset Y",
|
||||
"gui.eroticdungeon.offset_config.offset_z": "Offset Z",
|
||||
"gui.eroticdungeon.offset_config.reset": "Reset",
|
||||
"gui.eroticdungeon.offset_config.speed": "Speed",
|
||||
"gui.eroticdungeon.offset_config.title": "Offset Configuration",
|
||||
"gui.eroticdungeon.offset_direction.backward": "Backward",
|
||||
"gui.eroticdungeon.offset_direction.bidirectional": "Bidirectional",
|
||||
"gui.eroticdungeon.offset_direction.forward": "Forward",
|
||||
"gui.eroticdungeon.offset_mode.circular": "Circular",
|
||||
"gui.eroticdungeon.offset_mode.linear": "Linear",
|
||||
"gui.eroticdungeon.offset_mode.sine": "Sine Wave",
|
||||
"gui.eroticdungeon.preview": "Preview",
|
||||
"gui.eroticdungeon.preview.3d_preview": "3D Preview",
|
||||
"gui.eroticdungeon.preview.coordinates": "Coordinates",
|
||||
"gui.eroticdungeon.preview.hint": "Drag to rotate 3D view",
|
||||
"gui.eroticdungeon.preview.perspective_front": "Front View",
|
||||
"gui.eroticdungeon.preview.perspective_iso": "Isometric View",
|
||||
"gui.eroticdungeon.preview.perspective_side": "Side View",
|
||||
"gui.eroticdungeon.preview.perspective_top": "Top View",
|
||||
"gui.eroticdungeon.preview.reset_view": "Reset View",
|
||||
"gui.eroticdungeon.preview.rotate_down": "Rotate Down",
|
||||
"gui.eroticdungeon.preview.rotate_left": "Rotate Left",
|
||||
"gui.eroticdungeon.preview.rotate_right": "Rotate Right",
|
||||
"gui.eroticdungeon.preview.rotate_up": "Rotate Up",
|
||||
"gui.eroticdungeon.preview.toggle_axes": "Toggle Axes",
|
||||
"gui.eroticdungeon.preview.toggle_grid": "Toggle Grid",
|
||||
"gui.eroticdungeon.preview.toggle_planes": "Toggle Planes",
|
||||
"gui.eroticdungeon.preview.zoom_in": "Zoom In",
|
||||
"gui.eroticdungeon.preview.zoom_out": "Zoom Out",
|
||||
"gui.eroticdungeon.slider.default": "Default",
|
||||
"gui.eroticdungeon.slider.max": "Maximum",
|
||||
"gui.eroticdungeon.slider.min": "Minimum",
|
||||
"gui.eroticdungeon.status.active": "Active",
|
||||
"gui.eroticdungeon.status.disabled": "Disabled",
|
||||
"gui.eroticdungeon.status.enabled": "Enabled",
|
||||
"gui.eroticdungeon.status.inactive": "Inactive",
|
||||
"item.eroticdungeongame.device_key": "Device Key",
|
||||
"item.eroticdungeongame.whip": "Whip",
|
||||
"key.categories.eroticdungeongame": "Erotic Dungeon",
|
||||
"key.eroticdungeongame.quit": "Unride the device/ Release player",
|
||||
"message.eroticdungeon.config_reset": "Offset configuration reset to default",
|
||||
"message.eroticdungeon.config_saved": "Offset configuration saved",
|
||||
"message.eroticdungeon.invalid_value": "Invalid value. Please enter a number between %s and %s",
|
||||
"message.eroticdungeongame.dungeon_key_01": "Hold key in main hand and Right Click to lock the corresponding device",
|
||||
"message.eroticdungeongame.dungeon_key_02": "Hold key in main hand and Right Click to lock or unlock the corresponding device",
|
||||
"message.eroticdungeongame.dungeon_key_03": "Hold key in main hand and press designated key to exit device/release player",
|
||||
"message.eroticdungeongame.love_machine": "Right click with a feather to adjust settings",
|
||||
"mount.eroticdungeongame.seat.onboard": "Press %s to Exit",
|
||||
"sound.eroticdungeongame.subtitle.in": "Piston Sound",
|
||||
"sound.eroticdungeongame.subtitle.lock": "Lock",
|
||||
"sound.eroticdungeongame.subtitle.out": "Piston Sound",
|
||||
"sound.eroticdungeongame.subtitle.unlock": "Unlock",
|
||||
"sound.eroticdungeongame.subtitle.whip": "Whip Hit",
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "Interactions with Dungeon Crafting Table"
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "Interactions with Dungeon Crafting Table",
|
||||
"tooltip.eroticdungeon.love_machine.config": "Sneak + Right-click to configure offset",
|
||||
"tooltip.eroticdungeon.offset_range": "Range: 0.0 - 1.0",
|
||||
"tooltip.eroticdungeon.speed_range": "Range: 0.001 - 0.1"
|
||||
}
|
||||
|
|
@ -102,6 +102,7 @@
|
|||
"block.eroticdungeongame.dark_oak_wall_rack": "烏樫牆架",
|
||||
"block.eroticdungeongame.dark_oak_x_cross": "烏樫乂形架",
|
||||
"block.eroticdungeongame.dungeon_crafting_table": "牢戯製物案",
|
||||
"block.eroticdungeongame.end_rod_love_machine": "戲械",
|
||||
"block.eroticdungeongame.gray_acacia_prone_bench": "灰金合歡刑凳",
|
||||
"block.eroticdungeongame.gray_bamboo_prone_bench": "灰竹刑凳",
|
||||
"block.eroticdungeongame.gray_birch_prone_bench": "灰白樺刑凳",
|
||||
|
|
@ -160,6 +161,7 @@
|
|||
"block.eroticdungeongame.light_gray_oak_prone_bench": "淺灰柞木刑凳",
|
||||
"block.eroticdungeongame.light_gray_spruce_prone_bench": "淺灰雲杉刑凳",
|
||||
"block.eroticdungeongame.light_gray_warped_prone_bench": "淺灰詭譎刑凳",
|
||||
"block.eroticdungeongame.lightning_rod_love_machine": "戲械",
|
||||
"block.eroticdungeongame.lime_acacia_prone_bench": "青檸金合歡刑凳",
|
||||
"block.eroticdungeongame.lime_bamboo_prone_bench": "青檸竹刑凳",
|
||||
"block.eroticdungeongame.lime_birch_prone_bench": "青檸白樺刑凳",
|
||||
|
|
@ -293,14 +295,90 @@
|
|||
"block.eroticdungeongame.yellow_spruce_prone_bench": "黃雲杉刑凳",
|
||||
"block.eroticdungeongame.yellow_warped_prone_bench": "黃詭譎刑凳",
|
||||
"container.eroticdungeongame.crafting_table": "牢戯製物案",
|
||||
"death.attack.fucked_0": "%s 尋歡卒",
|
||||
"death.attack.fucked_0.entity": "%s 與 %s 尋歡卒",
|
||||
"death.attack.fucked_1": "%s 極樂卒",
|
||||
"death.attack.fucked_1.entity": "%s 與 %s 極樂卒",
|
||||
"death.attack.whip_0": "%s 鞭刑卒",
|
||||
"death.attack.whip_0.entity": "%s 與 %s 鞭刑卒",
|
||||
"death.attack.whip_1": "%s 鞭責卒",
|
||||
"death.attack.whip_1.entity": "%s 與 %s 苛責卒",
|
||||
"death.attack.whip_2": "%s 鞭下卒",
|
||||
"death.attack.whip_2.entity": "%s 與 %s 鞭下卒",
|
||||
"description.eroticdungeongame.key_content": "机钥: ",
|
||||
"emi.category.eroticdungeongame.dungeon_crafting_table": "牢戯製物案",
|
||||
"enchantment.eroticdungeongame.carrot_and_stick": "恩威並施",
|
||||
"entity.eroticdungeongame.seat": "座",
|
||||
"entity.minecraft.villager.eroticdungeongame.dungeon_craftsman": "牢戯匠",
|
||||
"eroticdungeongame.message.key.failed.mismatch": "鑰機不契",
|
||||
"eroticdungeongame.message.key.success.locked": "機關已閉",
|
||||
"eroticdungeongame.message.key.success.unlock": "機關已啓",
|
||||
"eroticdungeongame.message.quit.failed.locked": "离机 / 釋人未遂:已鎖",
|
||||
"eroticdungeongame.name": "牢戯",
|
||||
"gui.eroticdungeon.axis.x": "X軸",
|
||||
"gui.eroticdungeon.axis.y": "Y軸",
|
||||
"gui.eroticdungeon.axis.z": "Z軸",
|
||||
"gui.eroticdungeon.direction.negative": "-方向",
|
||||
"gui.eroticdungeon.direction.positive": "+方向",
|
||||
"gui.eroticdungeon.offset_config.apply": "應用",
|
||||
"gui.eroticdungeon.offset_config.close": "關閉",
|
||||
"gui.eroticdungeon.offset_config.enable_offset": "啟用偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_x": "X軸偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_y": "Y軸偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_z": "Z軸偏移",
|
||||
"gui.eroticdungeon.offset_config.reset": "重置",
|
||||
"gui.eroticdungeon.offset_config.speed": "速度",
|
||||
"gui.eroticdungeon.offset_config.title": "偏移設定",
|
||||
"gui.eroticdungeon.offset_direction.backward": "向後",
|
||||
"gui.eroticdungeon.offset_direction.bidirectional": "雙向",
|
||||
"gui.eroticdungeon.offset_direction.forward": "向前",
|
||||
"gui.eroticdungeon.offset_mode.circular": "圓形",
|
||||
"gui.eroticdungeon.offset_mode.linear": "線性",
|
||||
"gui.eroticdungeon.offset_mode.sine": "正弦波",
|
||||
"gui.eroticdungeon.preview": "預覽",
|
||||
"gui.eroticdungeon.preview.3d_preview": "3D預覽",
|
||||
"gui.eroticdungeon.preview.coordinates": "座標",
|
||||
"gui.eroticdungeon.preview.hint": "拖拽旋轉3D視角",
|
||||
"gui.eroticdungeon.preview.perspective_front": "前視圖",
|
||||
"gui.eroticdungeon.preview.perspective_iso": "等軸測圖",
|
||||
"gui.eroticdungeon.preview.perspective_side": "側視圖",
|
||||
"gui.eroticdungeon.preview.perspective_top": "頂視圖",
|
||||
"gui.eroticdungeon.preview.reset_view": "重置視角",
|
||||
"gui.eroticdungeon.preview.rotate_down": "下旋轉",
|
||||
"gui.eroticdungeon.preview.rotate_left": "左旋轉",
|
||||
"gui.eroticdungeon.preview.rotate_right": "右旋轉",
|
||||
"gui.eroticdungeon.preview.rotate_up": "上旋轉",
|
||||
"gui.eroticdungeon.preview.toggle_axes": "切換座標軸",
|
||||
"gui.eroticdungeon.preview.toggle_grid": "切換網格",
|
||||
"gui.eroticdungeon.preview.toggle_planes": "切換平面",
|
||||
"gui.eroticdungeon.preview.zoom_in": "放大",
|
||||
"gui.eroticdungeon.preview.zoom_out": "縮小",
|
||||
"gui.eroticdungeon.slider.default": "預設值",
|
||||
"gui.eroticdungeon.slider.max": "最大值",
|
||||
"gui.eroticdungeon.slider.min": "最小值",
|
||||
"gui.eroticdungeon.status.active": "激活",
|
||||
"gui.eroticdungeon.status.disabled": "已禁用",
|
||||
"gui.eroticdungeon.status.enabled": "已啟用",
|
||||
"gui.eroticdungeon.status.inactive": "未激活",
|
||||
"item.eroticdungeongame.device_key": "机钥",
|
||||
"item.eroticdungeongame.whip": "鞭",
|
||||
"key.categories.eroticdungeongame": "牢戯",
|
||||
"key.eroticdungeongame.quit": "离机 / 釋人",
|
||||
"message.eroticdungeon.config_reset": "偏移設定已重置為預設",
|
||||
"message.eroticdungeon.config_saved": "偏移設定已保存",
|
||||
"message.eroticdungeon.invalid_value": "無效值。請輸入 %s 到 %s 之間的數字",
|
||||
"message.eroticdungeongame.dungeon_key_01": "主手持鑰,右擊,可鎖對應之機",
|
||||
"message.eroticdungeongame.dungeon_key_02": "主手持鑰,右擊,可鎖啓對應之機",
|
||||
"message.eroticdungeongame.dungeon_key_03": "主手持鑰,按定鍵,可離開機/釋人",
|
||||
"message.eroticdungeongame.love_machine": "以羽右擊方石,可調其設",
|
||||
"mount.eroticdungeongame.seat.onboard": "按%s離開",
|
||||
"sound.eroticdungeongame.subtitle.in": "塞聲",
|
||||
"sound.eroticdungeongame.subtitle.lock": "鎖",
|
||||
"sound.eroticdungeongame.subtitle.out": "塞聲",
|
||||
"sound.eroticdungeongame.subtitle.unlock": "解",
|
||||
"sound.eroticdungeongame.subtitle.whip": "鞭擊",
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "操持地牢造物案"
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "操持地牢造物案",
|
||||
"tooltip.eroticdungeon.love_machine.config": "潛行+右鍵配置偏移",
|
||||
"tooltip.eroticdungeon.offset_range": "範圍: 0.0 - 1.0",
|
||||
"tooltip.eroticdungeon.speed_range": "範圍: 0.001 - 0.1"
|
||||
}
|
||||
|
|
@ -102,6 +102,7 @@
|
|||
"block.eroticdungeongame.dark_oak_wall_rack": "深色橡木壁挂拉肢架",
|
||||
"block.eroticdungeongame.dark_oak_x_cross": "深色橡木X形十字架",
|
||||
"block.eroticdungeongame.dungeon_crafting_table": "地牢工作台",
|
||||
"block.eroticdungeongame.end_rod_love_machine": "爱机",
|
||||
"block.eroticdungeongame.gray_acacia_prone_bench": "灰色金合欢木俯卧凳",
|
||||
"block.eroticdungeongame.gray_bamboo_prone_bench": "灰色竹俯卧凳",
|
||||
"block.eroticdungeongame.gray_birch_prone_bench": "灰色白桦木俯卧凳",
|
||||
|
|
@ -160,6 +161,7 @@
|
|||
"block.eroticdungeongame.light_gray_oak_prone_bench": "淡灰色橡木俯卧凳",
|
||||
"block.eroticdungeongame.light_gray_spruce_prone_bench": "淡灰色云杉木俯卧凳",
|
||||
"block.eroticdungeongame.light_gray_warped_prone_bench": "淡灰色诡异木俯卧凳",
|
||||
"block.eroticdungeongame.lightning_rod_love_machine": "爱机",
|
||||
"block.eroticdungeongame.lime_acacia_prone_bench": "黄绿色金合欢木俯卧凳",
|
||||
"block.eroticdungeongame.lime_bamboo_prone_bench": "黄绿色竹俯卧凳",
|
||||
"block.eroticdungeongame.lime_birch_prone_bench": "黄绿色白桦木俯卧凳",
|
||||
|
|
@ -293,14 +295,90 @@
|
|||
"block.eroticdungeongame.yellow_spruce_prone_bench": "黄色云杉木俯卧凳",
|
||||
"block.eroticdungeongame.yellow_warped_prone_bench": "黄色诡异木俯卧凳",
|
||||
"container.eroticdungeongame.crafting_table": "地牢工作台",
|
||||
"death.attack.fucked_0": "%s 被艹死了",
|
||||
"death.attack.fucked_0.entity": "%s 被 %s 艹死了",
|
||||
"death.attack.fucked_1": "%s 被插死了",
|
||||
"death.attack.fucked_1.entity": "%s 被 %s 插死了",
|
||||
"death.attack.whip_0": "%s 被鞭打致死",
|
||||
"death.attack.whip_0.entity": "%s 被 %s 鞭打致死",
|
||||
"death.attack.whip_1": "%s 没能承受住鞭刑",
|
||||
"death.attack.whip_1.entity": "%s 被 %s 無情地鞭打致死",
|
||||
"death.attack.whip_2": "%s 倒在了鞭下",
|
||||
"death.attack.whip_2.entity": "%s 倒在了 %s 的鞭下",
|
||||
"description.eroticdungeongame.key_content": "设备钥匙: ",
|
||||
"emi.category.eroticdungeongame.dungeon_crafting_table": "地牢工作台",
|
||||
"enchantment.eroticdungeongame.carrot_and_stick": "恩威并施",
|
||||
"entity.eroticdungeongame.seat": "座椅",
|
||||
"entity.minecraft.villager.eroticdungeongame.dungeon_craftsman": "地牢工匠",
|
||||
"eroticdungeongame.message.key.failed.mismatch": "此钥匙与当前设备不匹配",
|
||||
"eroticdungeongame.message.key.success.locked": "成功锁定设备",
|
||||
"eroticdungeongame.message.key.success.unlock": "成功解锁设备",
|
||||
"eroticdungeongame.message.quit.failed.locked": "退出设备 / 或释放玩家失敗:设备已上锁",
|
||||
"eroticdungeongame.name": "地牢游戏",
|
||||
"gui.eroticdungeon.axis.x": "X轴",
|
||||
"gui.eroticdungeon.axis.y": "Y轴",
|
||||
"gui.eroticdungeon.axis.z": "Z轴",
|
||||
"gui.eroticdungeon.direction.negative": "-方向",
|
||||
"gui.eroticdungeon.direction.positive": "+方向",
|
||||
"gui.eroticdungeon.offset_config.apply": "应用",
|
||||
"gui.eroticdungeon.offset_config.close": "关闭",
|
||||
"gui.eroticdungeon.offset_config.enable_offset": "启用偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_x": "X轴偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_y": "Y轴偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_z": "Z轴偏移",
|
||||
"gui.eroticdungeon.offset_config.reset": "重置",
|
||||
"gui.eroticdungeon.offset_config.speed": "速度",
|
||||
"gui.eroticdungeon.offset_config.title": "偏移设置",
|
||||
"gui.eroticdungeon.offset_direction.backward": "向后",
|
||||
"gui.eroticdungeon.offset_direction.bidirectional": "双向",
|
||||
"gui.eroticdungeon.offset_direction.forward": "向前",
|
||||
"gui.eroticdungeon.offset_mode.circular": "圆形",
|
||||
"gui.eroticdungeon.offset_mode.linear": "线性",
|
||||
"gui.eroticdungeon.offset_mode.sine": "正弦波",
|
||||
"gui.eroticdungeon.preview": "预览",
|
||||
"gui.eroticdungeon.preview.3d_preview": "3D预览",
|
||||
"gui.eroticdungeon.preview.coordinates": "坐标",
|
||||
"gui.eroticdungeon.preview.hint": "拖拽旋转3D视角",
|
||||
"gui.eroticdungeon.preview.perspective_front": "前视图",
|
||||
"gui.eroticdungeon.preview.perspective_iso": "等轴测图",
|
||||
"gui.eroticdungeon.preview.perspective_side": "侧视图",
|
||||
"gui.eroticdungeon.preview.perspective_top": "顶视图",
|
||||
"gui.eroticdungeon.preview.reset_view": "重置视角",
|
||||
"gui.eroticdungeon.preview.rotate_down": "下旋转",
|
||||
"gui.eroticdungeon.preview.rotate_left": "左旋转",
|
||||
"gui.eroticdungeon.preview.rotate_right": "右旋转",
|
||||
"gui.eroticdungeon.preview.rotate_up": "上旋转",
|
||||
"gui.eroticdungeon.preview.toggle_axes": "切换坐标轴",
|
||||
"gui.eroticdungeon.preview.toggle_grid": "切换网格",
|
||||
"gui.eroticdungeon.preview.toggle_planes": "切换平面",
|
||||
"gui.eroticdungeon.preview.zoom_in": "放大",
|
||||
"gui.eroticdungeon.preview.zoom_out": "缩小",
|
||||
"gui.eroticdungeon.slider.default": "默认值",
|
||||
"gui.eroticdungeon.slider.max": "最大值",
|
||||
"gui.eroticdungeon.slider.min": "最小值",
|
||||
"gui.eroticdungeon.status.active": "激活",
|
||||
"gui.eroticdungeon.status.disabled": "已禁用",
|
||||
"gui.eroticdungeon.status.enabled": "已启用",
|
||||
"gui.eroticdungeon.status.inactive": "未激活",
|
||||
"item.eroticdungeongame.device_key": "设备钥匙",
|
||||
"item.eroticdungeongame.whip": "鞭子",
|
||||
"key.categories.eroticdungeongame": "地牢游戏",
|
||||
"key.eroticdungeongame.quit": "退出设备 / 释放玩家",
|
||||
"message.eroticdungeon.config_reset": "偏移设置已重置为默认",
|
||||
"message.eroticdungeon.config_saved": "偏移设置已保存",
|
||||
"message.eroticdungeon.invalid_value": "无效值。请输入 %s 到 %s 之间的数字",
|
||||
"message.eroticdungeongame.dungeon_key_01": "主手持有钥匙右键锁定对应设备",
|
||||
"message.eroticdungeongame.dungeon_key_02": "主手持有钥匙右键锁定或解锁对应设备",
|
||||
"message.eroticdungeongame.dungeon_key_03": "主手持有钥匙按下指定按键即可退出设备/或释放玩家",
|
||||
"message.eroticdungeongame.love_machine": "使用羽毛右键方块来调整设置",
|
||||
"mount.eroticdungeongame.seat.onboard": "按%s离开",
|
||||
"sound.eroticdungeongame.subtitle.in": "活塞声",
|
||||
"sound.eroticdungeongame.subtitle.lock": "上锁",
|
||||
"sound.eroticdungeongame.subtitle.out": "活塞声",
|
||||
"sound.eroticdungeongame.subtitle.unlock": "解锁",
|
||||
"sound.eroticdungeongame.subtitle.whip": "鞭子击打",
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "与地牢工作台交互"
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "与地牢工作台交互",
|
||||
"tooltip.eroticdungeon.love_machine.config": "潜行+右键配置偏移",
|
||||
"tooltip.eroticdungeon.offset_range": "范围: 0.0 - 1.0",
|
||||
"tooltip.eroticdungeon.speed_range": "范围: 0.001 - 0.1"
|
||||
}
|
||||
|
|
@ -102,6 +102,7 @@
|
|||
"block.eroticdungeongame.dark_oak_wall_rack": "黑橡木壁掛拉肢架",
|
||||
"block.eroticdungeongame.dark_oak_x_cross": "黑橡木X形十字架",
|
||||
"block.eroticdungeongame.dungeon_crafting_table": "地牢工作台",
|
||||
"block.eroticdungeongame.end_rod_love_machine": "愛機",
|
||||
"block.eroticdungeongame.gray_acacia_prone_bench": "灰色相思木俯卧凳",
|
||||
"block.eroticdungeongame.gray_bamboo_prone_bench": "灰色竹俯卧凳",
|
||||
"block.eroticdungeongame.gray_birch_prone_bench": "灰色樺木俯卧凳",
|
||||
|
|
@ -160,6 +161,7 @@
|
|||
"block.eroticdungeongame.light_gray_oak_prone_bench": "淡灰色橡木俯卧凳",
|
||||
"block.eroticdungeongame.light_gray_spruce_prone_bench": "淡灰色杉木俯卧凳",
|
||||
"block.eroticdungeongame.light_gray_warped_prone_bench": "淡灰色扭曲木俯卧凳",
|
||||
"block.eroticdungeongame.lightning_rod_love_machine": "愛機",
|
||||
"block.eroticdungeongame.lime_acacia_prone_bench": "萊姆色相思木俯卧凳",
|
||||
"block.eroticdungeongame.lime_bamboo_prone_bench": "萊姆色竹俯卧凳",
|
||||
"block.eroticdungeongame.lime_birch_prone_bench": "萊姆色樺木俯卧凳",
|
||||
|
|
@ -293,14 +295,90 @@
|
|||
"block.eroticdungeongame.yellow_spruce_prone_bench": "黃色杉木俯卧凳",
|
||||
"block.eroticdungeongame.yellow_warped_prone_bench": "黃色扭曲木俯卧凳",
|
||||
"container.eroticdungeongame.crafting_table": "地牢工作台",
|
||||
"death.attack.fucked_0": "%s 被艹死了",
|
||||
"death.attack.fucked_0.entity": "%s 被 %s 艹死了",
|
||||
"death.attack.fucked_1": "%s 被插死了",
|
||||
"death.attack.fucked_1.entity": "%s 被 %s 插死了",
|
||||
"death.attack.whip_0": "%s 被鞭打致死",
|
||||
"death.attack.whip_0.entity": "%s 被 %s 鞭打致死",
|
||||
"death.attack.whip_1": "%s 沒能承受住鞭刑",
|
||||
"death.attack.whip_1.entity": "%s 被 %s 無情地鞭打致死",
|
||||
"death.attack.whip_2": "%s 倒在了鞭下",
|
||||
"death.attack.whip_2.entity": "%s 倒在了 %s 的鞭下",
|
||||
"description.eroticdungeongame.key_content": "設備鑰匙: ",
|
||||
"emi.category.eroticdungeongame.dungeon_crafting_table": "地牢工作台",
|
||||
"enchantment.eroticdungeongame.carrot_and_stick": "恩威並施",
|
||||
"entity.eroticdungeongame.seat": "座椅",
|
||||
"entity.minecraft.villager.eroticdungeongame.dungeon_craftsman": "地牢工匠",
|
||||
"eroticdungeongame.message.key.failed.mismatch": "此鑰匙與當前設備不匹配",
|
||||
"eroticdungeongame.message.key.success.locked": "成功鎖定設備",
|
||||
"eroticdungeongame.message.key.success.unlock": "成功解鎖設備",
|
||||
"eroticdungeongame.message.quit.failed.locked": "退出設備 / 或釋放玩家失敗:设备已上鎖",
|
||||
"eroticdungeongame.name": "地牢游戲",
|
||||
"gui.eroticdungeon.axis.x": "X軸",
|
||||
"gui.eroticdungeon.axis.y": "Y軸",
|
||||
"gui.eroticdungeon.axis.z": "Z軸",
|
||||
"gui.eroticdungeon.direction.negative": "-方向",
|
||||
"gui.eroticdungeon.direction.positive": "+方向",
|
||||
"gui.eroticdungeon.offset_config.apply": "應用",
|
||||
"gui.eroticdungeon.offset_config.close": "關閉",
|
||||
"gui.eroticdungeon.offset_config.enable_offset": "啟用偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_x": "X軸偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_y": "Y軸偏移",
|
||||
"gui.eroticdungeon.offset_config.offset_z": "Z軸偏移",
|
||||
"gui.eroticdungeon.offset_config.reset": "重置",
|
||||
"gui.eroticdungeon.offset_config.speed": "速度",
|
||||
"gui.eroticdungeon.offset_config.title": "偏移設置",
|
||||
"gui.eroticdungeon.offset_direction.backward": "向後",
|
||||
"gui.eroticdungeon.offset_direction.bidirectional": "雙向",
|
||||
"gui.eroticdungeon.offset_direction.forward": "向前",
|
||||
"gui.eroticdungeon.offset_mode.circular": "圓形",
|
||||
"gui.eroticdungeon.offset_mode.linear": "線性",
|
||||
"gui.eroticdungeon.offset_mode.sine": "正弦波",
|
||||
"gui.eroticdungeon.preview": "預覽",
|
||||
"gui.eroticdungeon.preview.3d_preview": "3D預覽",
|
||||
"gui.eroticdungeon.preview.coordinates": "座標",
|
||||
"gui.eroticdungeon.preview.hint": "拖拽旋轉3D視角",
|
||||
"gui.eroticdungeon.preview.perspective_front": "前視圖",
|
||||
"gui.eroticdungeon.preview.perspective_iso": "等軸測圖",
|
||||
"gui.eroticdungeon.preview.perspective_side": "側視圖",
|
||||
"gui.eroticdungeon.preview.perspective_top": "頂視圖",
|
||||
"gui.eroticdungeon.preview.reset_view": "重置視角",
|
||||
"gui.eroticdungeon.preview.rotate_down": "下旋轉",
|
||||
"gui.eroticdungeon.preview.rotate_left": "左旋轉",
|
||||
"gui.eroticdungeon.preview.rotate_right": "右旋轉",
|
||||
"gui.eroticdungeon.preview.rotate_up": "上旋轉",
|
||||
"gui.eroticdungeon.preview.toggle_axes": "切換座標軸",
|
||||
"gui.eroticdungeon.preview.toggle_grid": "切換網格",
|
||||
"gui.eroticdungeon.preview.toggle_planes": "切換平面",
|
||||
"gui.eroticdungeon.preview.zoom_in": "放大",
|
||||
"gui.eroticdungeon.preview.zoom_out": "縮小",
|
||||
"gui.eroticdungeon.slider.default": "預設值",
|
||||
"gui.eroticdungeon.slider.max": "最大值",
|
||||
"gui.eroticdungeon.slider.min": "最小值",
|
||||
"gui.eroticdungeon.status.active": "激活",
|
||||
"gui.eroticdungeon.status.disabled": "已禁用",
|
||||
"gui.eroticdungeon.status.enabled": "已啟用",
|
||||
"gui.eroticdungeon.status.inactive": "未激活",
|
||||
"item.eroticdungeongame.device_key": "設備鑰匙",
|
||||
"item.eroticdungeongame.whip": "鞭子",
|
||||
"key.categories.eroticdungeongame": "地牢游戲",
|
||||
"key.eroticdungeongame.quit": "退出设备 / 釋放玩家",
|
||||
"message.eroticdungeon.config_reset": "偏移設置已重置為預設",
|
||||
"message.eroticdungeon.config_saved": "偏移設置已保存",
|
||||
"message.eroticdungeon.invalid_value": "無效值。請輸入 %s 到 %s 之間的數字",
|
||||
"message.eroticdungeongame.dungeon_key_01": "主手持有鑰匙右鍵鎖定對應設備",
|
||||
"message.eroticdungeongame.dungeon_key_02": "主手持有鑰匙右鍵鎖定解鎖對應設備",
|
||||
"message.eroticdungeongame.dungeon_key_03": "主手持有鑰匙按下指定按鍵即可退出設備/或釋放玩家",
|
||||
"message.eroticdungeongame.love_machine": "使用羽毛右鍵方塊來調整設置",
|
||||
"mount.eroticdungeongame.seat.onboard": "按%s離開",
|
||||
"sound.eroticdungeongame.subtitle.in": "活塞聲",
|
||||
"sound.eroticdungeongame.subtitle.lock": "上鎖",
|
||||
"sound.eroticdungeongame.subtitle.out": "活塞聲",
|
||||
"sound.eroticdungeongame.subtitle.unlock": "解鎖",
|
||||
"sound.eroticdungeongame.subtitle.whip": "鞭子擊打",
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "與地牢工作台交互"
|
||||
"stat.eroticdungeongame.interact_with_dungeon_crafting_table": "與地牢工作台交互",
|
||||
"tooltip.eroticdungeon.love_machine.config": "潛行+右鍵配置偏移",
|
||||
"tooltip.eroticdungeon.offset_range": "範圍: 0.0 - 1.0",
|
||||
"tooltip.eroticdungeon.speed_range": "範圍: 0.001 - 0.1"
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/handheld",
|
||||
"textures": {
|
||||
"layer0": "eroticdungeongame:item/device_key"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "eroticdungeongame:block/love_machine"
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "eroticdungeongame:block/love_machine"
|
||||
}
|
||||
|
|
@ -1,10 +1,22 @@
|
|||
{
|
||||
"in": {
|
||||
"sounds": [
|
||||
"eroticdungeongame:piston/in"
|
||||
],
|
||||
"subtitle": "sound.eroticdungeongame.subtitle.in"
|
||||
},
|
||||
"lock": {
|
||||
"sounds": [
|
||||
"eroticdungeongame:lock/lock"
|
||||
],
|
||||
"subtitle": "sound.eroticdungeongame.subtitle.lock"
|
||||
},
|
||||
"out": {
|
||||
"sounds": [
|
||||
"eroticdungeongame:piston/out"
|
||||
],
|
||||
"subtitle": "sound.eroticdungeongame.subtitle.out"
|
||||
},
|
||||
"unlock": {
|
||||
"sounds": [
|
||||
"eroticdungeongame:lock/unlock"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"camPosOffset": {
|
||||
"relative": true,
|
||||
"x": 0.0,
|
||||
"y": -0.25,
|
||||
"y": 0.0,
|
||||
"z": 0.0
|
||||
},
|
||||
"heightModifier": 1.0,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"camPosOffset": {
|
||||
"relative": true,
|
||||
"x": 0.0,
|
||||
"y": -0.25,
|
||||
"y": 0.0,
|
||||
"z": 0.0
|
||||
},
|
||||
"heightModifier": 1.0,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"camPosOffset": {
|
||||
"relative": true,
|
||||
"x": 0.0,
|
||||
"y": -0.4,
|
||||
"y": -0.5,
|
||||
"z": 0.7
|
||||
},
|
||||
"heightModifier": 1.0,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_iron_ingot": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:iron_ingot"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "eroticdungeongame:device_key"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_iron_ingot",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"eroticdungeongame:device_key"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_device_key": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"eroticdungeongame:device_key"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "eroticdungeongame:device_key_reset"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_device_key",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"eroticdungeongame:device_key_reset"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_end_rod": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:end_rod"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "eroticdungeongame:end_rod_love_machine"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_end_rod",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"eroticdungeongame:end_rod_love_machine"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_lightning_rod": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"minecraft:lightning_rod"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "eroticdungeongame:lightning_rod_love_machine"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_lightning_rod",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"eroticdungeongame:lightning_rod_love_machine"
|
||||
]
|
||||
},
|
||||
"sends_telemetry_event": false
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"exhaustion": 0.2,
|
||||
"message_id": "fucked",
|
||||
"scaling": "always"
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"exhaustion": 0.2,
|
||||
"message_id": "whipped",
|
||||
"scaling": "always"
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"bonus_rolls": 0.0,
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
],
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "eroticdungeongame:end_rod_love_machine"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
}
|
||||
],
|
||||
"random_sequence": "eroticdungeongame:blocks/end_rod_love_machine"
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"bonus_rolls": 0.0,
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
],
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "eroticdungeongame:lightning_rod_love_machine"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
}
|
||||
],
|
||||
"random_sequence": "eroticdungeongame:blocks/lightning_rod_love_machine"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "eroticdungeongame:dungeon_shapeless_recipe",
|
||||
"category": "equipment",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:iron_ingot"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:stone"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "eroticdungeongame:device_key"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "eroticdungeongame:dungeon_shapeless_recipe",
|
||||
"category": "equipment",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "eroticdungeongame:device_key"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "eroticdungeongame:device_key"
|
||||
}
|
||||
}
|
||||
|
|
@ -7,21 +7,15 @@
|
|||
"item": "minecraft:black_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_acacia_prone_bench"
|
||||
},
|
||||
|
|
@ -29,28 +23,34 @@
|
|||
"item": "eroticdungeongame:brown_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:black_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -11,10 +11,10 @@
|
|||
"item": "eroticdungeongame:pink_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
|
|
@ -22,35 +22,35 @@
|
|||
{
|
||||
"item": "eroticdungeongame:blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_birch_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,32 +7,14 @@
|
|||
"item": "minecraft:black_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_crimson_prone_bench"
|
||||
|
|
@ -40,17 +22,35 @@
|
|||
{
|
||||
"item": "eroticdungeongame:white_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:black_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_dark_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:brown_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_jungle_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,13 +8,19 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_mangrove_prone_bench"
|
||||
|
|
@ -23,34 +29,28 @@
|
|||
"item": "eroticdungeongame:gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:blue_mangrove_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,19 +8,28 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
"item": "eroticdungeongame:brown_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_oak_prone_bench"
|
||||
|
|
@ -31,26 +40,17 @@
|
|||
{
|
||||
"item": "eroticdungeongame:blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_oak_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_oak_prone_bench"
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,22 +8,10 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
"item": "eroticdungeongame:brown_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_warped_prone_bench"
|
||||
|
|
@ -32,25 +20,37 @@
|
|||
"item": "eroticdungeongame:cyan_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_warped_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,21 +7,15 @@
|
|||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_acacia_prone_bench"
|
||||
},
|
||||
|
|
@ -29,28 +23,34 @@
|
|||
"item": "eroticdungeongame:brown_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -10,33 +10,6 @@
|
|||
{
|
||||
"item": "eroticdungeongame:pink_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
},
|
||||
|
|
@ -44,13 +17,40 @@
|
|||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,32 +7,17 @@
|
|||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_crimson_prone_bench"
|
||||
|
|
@ -40,17 +25,32 @@
|
|||
{
|
||||
"item": "eroticdungeongame:white_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_dark_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:black_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_jungle_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,13 +8,19 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_mangrove_prone_bench"
|
||||
|
|
@ -23,34 +29,28 @@
|
|||
"item": "eroticdungeongame:gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:black_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,22 +8,31 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
"item": "eroticdungeongame:black_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_oak_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
"item": "eroticdungeongame:brown_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_oak_prone_bench"
|
||||
|
|
@ -31,26 +40,17 @@
|
|||
{
|
||||
"item": "eroticdungeongame:gray_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_oak_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_oak_prone_bench"
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,22 +8,10 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
"item": "eroticdungeongame:brown_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_warped_prone_bench"
|
||||
|
|
@ -32,25 +20,37 @@
|
|||
"item": "eroticdungeongame:cyan_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
"item": "eroticdungeongame:black_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_warped_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:green_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:green_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:brown_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -11,46 +11,46 @@
|
|||
"item": "eroticdungeongame:pink_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_birch_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:brown_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:brown_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:brown_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_dark_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:black_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_jungle_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,13 +8,19 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_mangrove_prone_bench"
|
||||
|
|
@ -23,34 +29,28 @@
|
|||
"item": "eroticdungeongame:gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:black_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_mangrove_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,22 +8,28 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
"item": "eroticdungeongame:black_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_oak_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_oak_prone_bench"
|
||||
|
|
@ -34,23 +40,17 @@
|
|||
{
|
||||
"item": "eroticdungeongame:blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_oak_prone_bench"
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,25 +8,7 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_warped_prone_bench"
|
||||
|
|
@ -35,22 +17,40 @@
|
|||
"item": "eroticdungeongame:cyan_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
"item": "eroticdungeongame:black_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,18 +7,15 @@
|
|||
"item": "minecraft:cyan_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_acacia_prone_bench"
|
||||
},
|
||||
|
|
@ -26,31 +23,34 @@
|
|||
"item": "eroticdungeongame:brown_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -10,33 +10,6 @@
|
|||
{
|
||||
"item": "eroticdungeongame:pink_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
},
|
||||
|
|
@ -44,13 +17,40 @@
|
|||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,29 +7,17 @@
|
|||
"item": "minecraft:cyan_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_crimson_prone_bench"
|
||||
|
|
@ -37,20 +25,32 @@
|
|||
{
|
||||
"item": "eroticdungeongame:white_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:cyan_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_dark_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_dark_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:black_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_jungle_prone_bench"
|
||||
"item": "eroticdungeongame:orange_jungle_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_jungle_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,13 +8,19 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_mangrove_prone_bench"
|
||||
|
|
@ -22,35 +28,29 @@
|
|||
{
|
||||
"item": "eroticdungeongame:gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_blue_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_mangrove_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_mangrove_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_mangrove_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,22 +8,28 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
"item": "eroticdungeongame:black_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_oak_prone_bench"
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
"item": "eroticdungeongame:brown_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
"item": "eroticdungeongame:pink_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_oak_prone_bench"
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_oak_prone_bench"
|
||||
|
|
@ -34,23 +40,17 @@
|
|||
{
|
||||
"item": "eroticdungeongame:blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_oak_prone_bench"
|
||||
"item": "eroticdungeongame:yellow_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_oak_prone_bench"
|
||||
"item": "eroticdungeongame:green_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_oak_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_oak_prone_bench"
|
||||
"item": "eroticdungeongame:purple_oak_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:black_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:green_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:red_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_spruce_prone_bench"
|
||||
"item": "eroticdungeongame:blue_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_spruce_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_spruce_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:cyan_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:gray_warped_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_warped_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,21 +7,15 @@
|
|||
"item": "minecraft:gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_acacia_prone_bench"
|
||||
},
|
||||
|
|
@ -29,28 +23,34 @@
|
|||
"item": "eroticdungeongame:brown_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_acacia_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_acacia_prone_bench"
|
||||
"item": "eroticdungeongame:lime_acacia_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,50 +7,50 @@
|
|||
"item": "minecraft:gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:pink_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_bamboo_prone_bench"
|
||||
"item": "eroticdungeongame:green_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_bamboo_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_bamboo_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -10,36 +10,6 @@
|
|||
{
|
||||
"item": "eroticdungeongame:pink_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_birch_prone_bench"
|
||||
},
|
||||
|
|
@ -47,10 +17,40 @@
|
|||
"item": "eroticdungeongame:light_gray_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
"item": "eroticdungeongame:red_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_birch_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_birch_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:lime_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:green_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cherry_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cherry_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cherry_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -7,29 +7,14 @@
|
|||
"item": "minecraft:gray_dye"
|
||||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_crimson_prone_bench"
|
||||
|
|
@ -37,20 +22,35 @@
|
|||
{
|
||||
"item": "eroticdungeongame:white_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:cyan_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:magenta_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_crimson_prone_bench"
|
||||
"item": "eroticdungeongame:light_gray_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_crimson_prone_bench"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_crimson_prone_bench"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,49 +8,49 @@
|
|||
},
|
||||
[
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:magenta_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:red_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:orange_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:brown_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:white_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:light_gray_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:black_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:blue_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:pink_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:green_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:lime_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:purple_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:yellow_cuff_bed"
|
||||
},
|
||||
{
|
||||
"item": "eroticdungeongame:cyan_cuff_bed"
|
||||
}
|
||||
]
|
||||
],
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user