mirror of
https://github.com/TeamMidnightDust/RoundTreesPack.git
synced 2025-12-15 09:45:09 +01:00
Compare commits
6 Commits
a889417caa
...
e28035dd61
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e28035dd61 | ||
|
|
bce867aff0 | ||
|
|
9fd3b13853 | ||
|
|
2c90c2a8cc | ||
|
|
cd6c2ad11e | ||
|
|
76d80f6791 |
8
.github/ISSUE_TEMPLATE/mod_support.md
vendored
Normal file
8
.github/ISSUE_TEMPLATE/mod_support.md
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
name: Mod Support
|
||||
about: Compatibility improvements with a specific mod
|
||||
title: 'MOD NAME HERE (url here)'
|
||||
labels: mod support
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
27
.github/workflows/assemble.yml
vendored
Normal file
27
.github/workflows/assemble.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Execute Python Script
|
||||
|
||||
on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set current date as env variable
|
||||
run: echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
|
||||
- name: Set up Python 3.10
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
- name: Execute Python Script
|
||||
run: python gen_pack.py ${{ env.DATE }} §7${{ github.repository_owner }} Edition
|
||||
- name: Upload artifacts to GitHub
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Round Trees Artifact
|
||||
path: Round-Trees-${{ env.DATE }}.zip
|
||||
48
.github/workflows/publish.yml
vendored
Normal file
48
.github/workflows/publish.yml
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
name: Build & Publish Resourcepack
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
description: 'The version name'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Python 3.10
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
- name: Compile Resourcepack
|
||||
run: python gen_pack.py -m ${{ inputs.version }}
|
||||
- name: Upload regular version
|
||||
uses: Kir-Antipov/mc-publish@v3.3
|
||||
with:
|
||||
modrinth-id: XlqZTP4W
|
||||
modrinth-featured: true
|
||||
modrinth-unfeature-mode: subset
|
||||
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
|
||||
|
||||
curseforge-id: 296616
|
||||
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
|
||||
|
||||
files: ./Round-Trees-${{ inputs.version }}.zip
|
||||
|
||||
name: Round Trees ${{ inputs.version }} - 1.20+
|
||||
version: ${{ inputs.version }}
|
||||
version-type: release
|
||||
loaders: minecraft
|
||||
changelog-file: CHANGELOG.*
|
||||
|
||||
game-versions: |
|
||||
>=1.20
|
||||
game-version-filter: releases
|
||||
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/src/__pycache__
|
||||
Round-Trees-*.zip
|
||||
30
CHANGELOG.md
Normal file
30
CHANGELOG.md
Normal file
@@ -0,0 +1,30 @@
|
||||
- Full rewrite
|
||||
- Now generated via Python script!
|
||||
- Optimized round log model
|
||||
- Adjusted model to avoid overlap with buttons and signs
|
||||
- Support Pale Oak logs
|
||||
- Compatibility with the following mods:
|
||||
- The Aether
|
||||
- Atmospheric
|
||||
- Autumnity
|
||||
- Blockus
|
||||
- Croptopia
|
||||
- Endergetic
|
||||
- Nature's Aura
|
||||
- Silent Gear
|
||||
- Terrestria
|
||||
- Traverse
|
||||
- Upgrade Aquatic
|
||||
- Woods and Mires
|
||||
- Botania
|
||||
- Cultural Delights
|
||||
- Fortuituous Feasts
|
||||
- Hibernal Herbs
|
||||
- Cluttered
|
||||
- Promenade
|
||||
- Hellion's Sniffer+
|
||||
- Terraqueous
|
||||
- [Let's Do] Vinery
|
||||
- [Let's Do] Blooming Nature
|
||||
- [Let's Do] Meadow
|
||||
- ... and many more!
|
||||
Binary file not shown.
18
assets/aether/blockstates/golden_oak_log.json
Normal file
18
assets/aether/blockstates/golden_oak_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "aether:block/golden_oak_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "aether:block/golden_oak_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "aether:block/golden_oak_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/aether/blockstates/skyroot_log.json
Normal file
18
assets/aether/blockstates/skyroot_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "aether:block/skyroot_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "aether:block/skyroot_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "aether:block/skyroot_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/aether/blockstates/stripped_skyroot_log.json
Normal file
18
assets/aether/blockstates/stripped_skyroot_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "aether:block/stripped_skyroot_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "aether:block/stripped_skyroot_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "aether:block/stripped_skyroot_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
7
assets/aether/models/block/golden_oak_log.json
Normal file
7
assets/aether/models/block/golden_oak_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "aether:block/natural/skyroot_log_top",
|
||||
"side": "aether:block/natural/golden_oak_log"
|
||||
}
|
||||
}
|
||||
7
assets/aether/models/block/skyroot_log.json
Normal file
7
assets/aether/models/block/skyroot_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "aether:block/natural/skyroot_log_top",
|
||||
"side": "aether:block/natural/skyroot_log"
|
||||
}
|
||||
}
|
||||
7
assets/aether/models/block/stripped_skyroot_log.json
Normal file
7
assets/aether/models/block/stripped_skyroot_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "aether:block/natural/stripped_skyroot_log_top",
|
||||
"side": "aether:block/natural/stripped_skyroot_log"
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/aspen_log.json
Normal file
18
assets/atmospheric/blockstates/aspen_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/aspen_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/aspen_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/aspen_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/grimwood_log.json
Normal file
18
assets/atmospheric/blockstates/grimwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/grimwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/grimwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/grimwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/kousa_log.json
Normal file
18
assets/atmospheric/blockstates/kousa_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/kousa_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/kousa_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/kousa_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/laurel_log.json
Normal file
18
assets/atmospheric/blockstates/laurel_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/laurel_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/laurel_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/laurel_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/morado_log.json
Normal file
18
assets/atmospheric/blockstates/morado_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/morado_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/morado_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/morado_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/rosewood_log.json
Normal file
18
assets/atmospheric/blockstates/rosewood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/rosewood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/rosewood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/rosewood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_aspen_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_aspen_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_aspen_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_aspen_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_aspen_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_grimwood_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_grimwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_grimwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_grimwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_grimwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_kousa_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_kousa_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_kousa_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_kousa_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_kousa_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_laurel_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_laurel_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_laurel_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_laurel_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_laurel_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_morado_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_morado_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_morado_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_morado_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_morado_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_rosewood_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_rosewood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_rosewood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_rosewood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_rosewood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/stripped_yucca_log.json
Normal file
18
assets/atmospheric/blockstates/stripped_yucca_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/stripped_yucca_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/stripped_yucca_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/stripped_yucca_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/watchful_aspen_log.json
Normal file
18
assets/atmospheric/blockstates/watchful_aspen_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/watchful_aspen_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/watchful_aspen_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/watchful_aspen_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/atmospheric/blockstates/yucca_log.json
Normal file
18
assets/atmospheric/blockstates/yucca_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "atmospheric:block/yucca_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "atmospheric:block/yucca_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "atmospheric:block/yucca_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "minecraft:block/birch_log_top",
|
||||
"side": "minecraft:block/birch_log"
|
||||
"top": "atmospheric:block/aspen_log_top",
|
||||
"side": "atmospheric:block/aspen_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/grimwood_log.json → assets/atmospheric/models/block/grimwood_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/grimwood_log.json → assets/atmospheric/models/block/grimwood_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/grimwood_log_top",
|
||||
"side": "atmospheric:block/grimwood_log",
|
||||
"particle": "atmospheric:block/grimwood_log"
|
||||
"side": "atmospheric:block/grimwood_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/kousa_log.json → assets/atmospheric/models/block/kousa_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/kousa_log.json → assets/atmospheric/models/block/kousa_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/kousa_log_top",
|
||||
"side": "atmospheric:block/kousa_log",
|
||||
"particle": "atmospheric:block/kousa_log"
|
||||
"side": "atmospheric:block/kousa_log"
|
||||
}
|
||||
}
|
||||
7
assets/atmospheric/models/block/laurel_log.json
Normal file
7
assets/atmospheric/models/block/laurel_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/laurel_log_top",
|
||||
"side": "atmospheric:block/laurel_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/morado_log.json → assets/atmospheric/models/block/morado_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/morado_log.json → assets/atmospheric/models/block/morado_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/morado_log_top",
|
||||
"side": "atmospheric:block/morado_log",
|
||||
"particle": "atmospheric:block/morado_log"
|
||||
"side": "atmospheric:block/morado_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/rosewood_log.json → assets/atmospheric/models/block/rosewood_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/rosewood_log.json → assets/atmospheric/models/block/rosewood_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/rosewood_log_top",
|
||||
"side": "atmospheric:block/rosewood_log",
|
||||
"particle": "atmospheric:block/rosewood_log"
|
||||
"side": "atmospheric:block/rosewood_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/stripped_aspen_log.json → assets/atmospheric/models/block/stripped_aspen_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/stripped_aspen_log.json → assets/atmospheric/models/block/stripped_aspen_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_aspen_log_top",
|
||||
"side": "atmospheric:block/stripped_aspen_log",
|
||||
"particle": "atmospheric:block/stripped_aspen_log"
|
||||
"side": "atmospheric:block/stripped_aspen_log"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_grimwood_log_top",
|
||||
"side": "atmospheric:block/stripped_grimwood_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/stripped_kousa_log.json → assets/atmospheric/models/block/stripped_kousa_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/stripped_kousa_log.json → assets/atmospheric/models/block/stripped_kousa_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_kousa_log_top",
|
||||
"side": "atmospheric:block/stripped_kousa_log",
|
||||
"particle": "atmospheric:block/stripped_kousa_log"
|
||||
"side": "atmospheric:block/stripped_kousa_log"
|
||||
}
|
||||
}
|
||||
7
assets/atmospheric/models/block/stripped_laurel_log.json
Normal file
7
assets/atmospheric/models/block/stripped_laurel_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_laurel_log_top",
|
||||
"side": "atmospheric:block/stripped_laurel_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/stripped_morado_log.json → assets/atmospheric/models/block/stripped_morado_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/stripped_morado_log.json → assets/atmospheric/models/block/stripped_morado_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_morado_log_top",
|
||||
"side": "atmospheric:block/stripped_morado_log",
|
||||
"particle": "atmospheric:block/stripped_morado_log"
|
||||
"side": "atmospheric:block/stripped_morado_log"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_rosewood_log_top",
|
||||
"side": "atmospheric:block/stripped_rosewood_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/stripped_yucca_log.json → assets/atmospheric/models/block/stripped_yucca_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/stripped_yucca_log.json → assets/atmospheric/models/block/stripped_yucca_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/stripped_yucca_log_top",
|
||||
"side": "atmospheric:block/stripped_yucca_log",
|
||||
"particle": "atmospheric:block/stripped_yucca_log"
|
||||
"side": "atmospheric:block/stripped_yucca_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/aspen_log.json → assets/atmospheric/models/block/watchful_aspen_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/aspen_log.json → assets/atmospheric/models/block/watchful_aspen_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/aspen_log_top",
|
||||
"side": "atmospheric:block/aspen_log",
|
||||
"particle": "atmospheric:block/aspen_log"
|
||||
"side": "atmospheric:block/watchful_aspen_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/atmospheric/models/block/yucca_log.json → assets/atmospheric/models/block/yucca_log.json
Executable file → Normal file
3
assets_legacy/atmospheric/models/block/yucca_log.json → assets/atmospheric/models/block/yucca_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "atmospheric:block/yucca_log_top",
|
||||
"side": "atmospheric:block/yucca_log",
|
||||
"particle": "atmospheric:block/yucca_log"
|
||||
"side": "atmospheric:block/yucca_log"
|
||||
}
|
||||
}
|
||||
18
assets/autumnity/blockstates/maple_log.json
Normal file
18
assets/autumnity/blockstates/maple_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "autumnity:block/maple_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "autumnity:block/maple_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "autumnity:block/maple_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/autumnity/blockstates/sappy_maple_log.json
Normal file
18
assets/autumnity/blockstates/sappy_maple_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "autumnity:block/sappy_maple_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "autumnity:block/sappy_maple_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "autumnity:block/sappy_maple_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/autumnity/blockstates/stripped_maple_log.json
Normal file
18
assets/autumnity/blockstates/stripped_maple_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "autumnity:block/stripped_maple_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "autumnity:block/stripped_maple_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "autumnity:block/stripped_maple_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
3
assets_legacy/autumnity/models/block/maple_log.json → assets/autumnity/models/block/maple_log.json
Executable file → Normal file
3
assets_legacy/autumnity/models/block/maple_log.json → assets/autumnity/models/block/maple_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "autumnity:block/maple_log_top",
|
||||
"side": "autumnity:block/maple_log",
|
||||
"particle": "autumnity:block/maple_log"
|
||||
"side": "autumnity:block/maple_log"
|
||||
}
|
||||
}
|
||||
7
assets/autumnity/models/block/sappy_maple_log.json
Normal file
7
assets/autumnity/models/block/sappy_maple_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "autumnity:block/sappy_maple_log_top",
|
||||
"side": "autumnity:block/sappy_maple_log"
|
||||
}
|
||||
}
|
||||
3
assets_legacy/autumnity/models/block/sappy_maple_log.json → assets/autumnity/models/block/stripped_maple_log.json
Executable file → Normal file
3
assets_legacy/autumnity/models/block/sappy_maple_log.json → assets/autumnity/models/block/stripped_maple_log.json
Executable file → Normal file
@@ -2,7 +2,6 @@
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "autumnity:block/stripped_maple_log_top",
|
||||
"side": "autumnity:block/sappy_maple_log",
|
||||
"particle": "autumnity:block/sappy_maple_log"
|
||||
"side": "autumnity:block/stripped_maple_log"
|
||||
}
|
||||
}
|
||||
18
assets/blockus/blockstates/legacy_log.json
Normal file
18
assets/blockus/blockstates/legacy_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "blockus:block/legacy_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "blockus:block/legacy_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "blockus:block/legacy_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/blockus/blockstates/stripped_white_oak_log.json
Normal file
18
assets/blockus/blockstates/stripped_white_oak_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "blockus:block/stripped_white_oak_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "blockus:block/stripped_white_oak_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "blockus:block/stripped_white_oak_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/blockus/blockstates/white_oak_log.json
Normal file
18
assets/blockus/blockstates/white_oak_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "blockus:block/white_oak_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "blockus:block/white_oak_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "blockus:block/white_oak_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
7
assets/blockus/models/block/legacy_log.json
Normal file
7
assets/blockus/models/block/legacy_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "blockus:block/legacy_log_top",
|
||||
"side": "blockus:block/legacy_log"
|
||||
}
|
||||
}
|
||||
7
assets/blockus/models/block/stripped_white_oak_log.json
Normal file
7
assets/blockus/models/block/stripped_white_oak_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "blockus:block/stripped_white_oak_log_top",
|
||||
"side": "blockus:block/stripped_white_oak_log"
|
||||
}
|
||||
}
|
||||
7
assets/blockus/models/block/white_oak_log.json
Normal file
7
assets/blockus/models/block/white_oak_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "blockus:block/white_oak_log_top",
|
||||
"side": "blockus:block/white_oak_log"
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/aspen_log.json
Normal file
18
assets/bloomingnature/blockstates/aspen_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/aspen_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/aspen_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/aspen_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/baobab_log.json
Normal file
18
assets/bloomingnature/blockstates/baobab_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/baobab_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/baobab_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/baobab_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/cactus_log.json
Normal file
18
assets/bloomingnature/blockstates/cactus_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/cactus_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/cactus_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/cactus_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/chestnut_log.json
Normal file
18
assets/bloomingnature/blockstates/chestnut_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/chestnut_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/chestnut_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/chestnut_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/ebony_log.json
Normal file
18
assets/bloomingnature/blockstates/ebony_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/ebony_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/ebony_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/ebony_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/fan_palm_log.json
Normal file
18
assets/bloomingnature/blockstates/fan_palm_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/fan_palm_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/fan_palm_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/fan_palm_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/fir_log.json
Normal file
18
assets/bloomingnature/blockstates/fir_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/fir_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/fir_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/fir_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/larch_log.json
Normal file
18
assets/bloomingnature/blockstates/larch_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/larch_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/larch_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/larch_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_aspen_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_aspen_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_aspen_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_aspen_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_aspen_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_baobab_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_baobab_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_baobab_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_baobab_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_baobab_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_chestnut_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_chestnut_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_chestnut_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_chestnut_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_chestnut_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_ebony_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_ebony_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_ebony_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_ebony_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_ebony_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_fan_palm_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_fan_palm_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_fan_palm_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_fan_palm_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_fan_palm_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_fir_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_fir_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_fir_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_fir_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_fir_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/stripped_larch_log.json
Normal file
18
assets/bloomingnature/blockstates/stripped_larch_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_larch_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_larch_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_larch_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_swamp_cypress_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_swamp_cypress_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_swamp_cypress_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/stripped_swamp_oak_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/stripped_swamp_oak_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/stripped_swamp_oak_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/swamp_cypress_log.json
Normal file
18
assets/bloomingnature/blockstates/swamp_cypress_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/swamp_cypress_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/swamp_cypress_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/swamp_cypress_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/bloomingnature/blockstates/swamp_oak_log.json
Normal file
18
assets/bloomingnature/blockstates/swamp_oak_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "bloomingnature:block/swamp_oak_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "bloomingnature:block/swamp_oak_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "bloomingnature:block/swamp_oak_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/aspen_log.json
Normal file
7
assets/bloomingnature/models/block/aspen_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/aspen_log_top",
|
||||
"side": "bloomingnature:block/aspen_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/baobab_log.json
Normal file
7
assets/bloomingnature/models/block/baobab_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/baobab_log_top",
|
||||
"side": "bloomingnature:block/baobab_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/cactus_log.json
Normal file
7
assets/bloomingnature/models/block/cactus_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/cactus_log_top",
|
||||
"side": "bloomingnature:block/cactus_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/chestnut_log.json
Normal file
7
assets/bloomingnature/models/block/chestnut_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/chestnut_log_top",
|
||||
"side": "bloomingnature:block/chestnut_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/ebony_log.json
Normal file
7
assets/bloomingnature/models/block/ebony_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/ebony_log_top",
|
||||
"side": "bloomingnature:block/ebony_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/fan_palm_log.json
Normal file
7
assets/bloomingnature/models/block/fan_palm_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/fan_palm_log_top",
|
||||
"side": "bloomingnature:block/fan_palm_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/fir_log.json
Normal file
7
assets/bloomingnature/models/block/fir_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/fir_log_top",
|
||||
"side": "bloomingnature:block/fir_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/larch_log.json
Normal file
7
assets/bloomingnature/models/block/larch_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/larch_log_top",
|
||||
"side": "bloomingnature:block/larch_log_side"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/aspen_log_top_stripped",
|
||||
"side": "bloomingnature:block/aspen_log_side_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/baobab_log_top_stripped",
|
||||
"side": "bloomingnature:block/baobab_log_side_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/chestnut_log_top_stripped",
|
||||
"side": "bloomingnature:block/chestnut_log_side_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/ebony_log_top_stripped",
|
||||
"side": "bloomingnature:block/ebony_log_side_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/fan_palm_log_top_stripped",
|
||||
"side": "bloomingnature:block/fan_palm_log_stripped"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/stripped_fir_log.json
Normal file
7
assets/bloomingnature/models/block/stripped_fir_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/fir_log_top_stripped",
|
||||
"side": "bloomingnature:block/fir_log_side_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/larch_log_stripped_top",
|
||||
"side": "bloomingnature:block/larch_log_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/swamp_cypress_log_stripped_top",
|
||||
"side": "bloomingnature:block/swamp_cypress_log_stripped_side"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/swamp_oak_log_stripped_top",
|
||||
"side": "bloomingnature:block/swamp_oak_log_stripped"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/swamp_cypress_log_top",
|
||||
"side": "bloomingnature:block/swamp_cypress_log_side"
|
||||
}
|
||||
}
|
||||
7
assets/bloomingnature/models/block/swamp_oak_log.json
Normal file
7
assets/bloomingnature/models/block/swamp_oak_log.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "block/log",
|
||||
"textures": {
|
||||
"top": "bloomingnature:block/swamp_oak_log_top",
|
||||
"side": "bloomingnature:block/swamp_oak_log_side"
|
||||
}
|
||||
}
|
||||
18
assets/botania/blockstates/dreamwood_log.json
Normal file
18
assets/botania/blockstates/dreamwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/dreamwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/botania/blockstates/glimmering_dreamwood_log.json
Normal file
18
assets/botania/blockstates/glimmering_dreamwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/glimmering_dreamwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/glimmering_dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/glimmering_dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/botania/blockstates/glimmering_livingwood_log.json
Normal file
18
assets/botania/blockstates/glimmering_livingwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/glimmering_livingwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/glimmering_livingwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/glimmering_livingwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/glimmering_stripped_dreamwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/glimmering_stripped_dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/glimmering_stripped_dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/glimmering_stripped_livingwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/glimmering_stripped_livingwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/glimmering_stripped_livingwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/botania/blockstates/livingwood_log.json
Normal file
18
assets/botania/blockstates/livingwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/livingwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/livingwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/livingwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/botania/blockstates/stripped_dreamwood_log.json
Normal file
18
assets/botania/blockstates/stripped_dreamwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/stripped_dreamwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/stripped_dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/stripped_dreamwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
18
assets/botania/blockstates/stripped_livingwood_log.json
Normal file
18
assets/botania/blockstates/stripped_livingwood_log.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=y": {
|
||||
"model": "botania:block/stripped_livingwood_log"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "botania:block/stripped_livingwood_log",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=x": {
|
||||
"model": "botania:block/stripped_livingwood_log",
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"z": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user