Compare commits

..

13 Commits

Author SHA1 Message Date
Martin Prokoph
e28035dd61 Update changelog 2025-09-14 22:33:23 +02:00
Martin Prokoph
bce867aff0 Increase compression level 2025-09-14 22:29:12 +02:00
Martin Prokoph
9fd3b13853 Add publishing workflows 2025-09-14 22:26:33 +02:00
Martin Prokoph
2c90c2a8cc Add option to minify json files 2025-09-14 22:15:54 +02:00
Martin Prokoph
cd6c2ad11e More mod compat
- 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
2025-09-14 21:57:24 +02:00
Martin Prokoph
76d80f6791 Re-add most mod compat of legacy version
- The Aether
- Atmospheric
- Autumnity
- Blockus
- Croptopia
- Endergetic
- Nature's Aura
- Silent Gear
- Terrestria
- Traverse
- Upgrade Aquatic
- Woods and Mires
2025-09-14 20:49:25 +02:00
Martin Prokoph
a889417caa Read textures from original model files
Improved mod support :)
2025-09-14 18:12:33 +02:00
Martin Prokoph
9871a0c09f Reduce z-fighting of neighboring rotated logs 2025-09-14 16:11:20 +02:00
Martin Prokoph
0734df1144 Fix z-fighting on various non-culling neighbor blocks 2025-09-14 15:31:17 +02:00
Martin Prokoph
458125e4f8 Even more model optimizations 2025-09-14 15:21:40 +02:00
Martin Prokoph
9cfdb7fa32 Fix button and sign overlap 2025-09-14 15:11:40 +02:00
Martin Prokoph
2072b22715 Further optimize log model 2025-09-14 14:44:29 +02:00
Martin Prokoph
fae5ab2589 Generate pack assets via Python
- Also features a new, optimized log model
2025-09-14 14:01:51 +02:00
2368 changed files with 22758 additions and 2608 deletions

8
.github/ISSUE_TEMPLATE/mod_support.md vendored Normal file
View 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
View 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
View 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
View File

@@ -0,0 +1,2 @@
/src/__pycache__
Round-Trees-*.zip

30
CHANGELOG.md Normal file
View 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!

2
LICENSE Normal file → Executable file
View File

@@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2020 MidnightDust Copyright (c) 2025 Motschen
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

0
README.md Normal file → Executable file
View File

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "abundance:block/redbud_log_top",
"side": "abundance:block/flowering_redbud_log",
"particle": "abundance:block/flowering_redbud_log"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "abundance:block/jacaranda_log_top",
"side": "abundance:block/jacaranda_log",
"particle": "abundance:block/jacaranda_log"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "abundance:block/redbud_log_top",
"side": "abundance:block/redbud_log",
"particle": "abundance:block/redbud_log"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "abundance:block/stripped_jacaranda_log_top",
"side": "abundance:block/stripped_jacaranda_log",
"particle": "abundance:block/stripped_jacaranda_log"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "abundance:block/stripped_redbud_log_top",
"side": "abundance:block/stripped_redbud_log",
"particle": "abundance:block/stripped_redbud_log"
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "ad_astra:block/glacian_log"
},
"axis=z": {
"model": "ad_astra:block/glacian_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "ad_astra:block/glacian_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "ad_astra:block/stripped_glacian_log"
},
"axis=z": {
"model": "ad_astra:block/stripped_glacian_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "ad_astra:block/stripped_glacian_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "ad_astra:block/glacian_log_top",
"side": "ad_astra:block/glacian_log"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "ad_astra:block/stripped_glacian_log_top",
"side": "ad_astra:block/stripped_glacian_log"
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "aether:block/natural/skyroot_log_top",
"side": "aether:block/natural/golden_oak_log"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "aether:block/natural/skyroot_log_top",
"side": "aether:block/natural/skyroot_log"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "aether:block/natural/stripped_skyroot_log_top",
"side": "aether:block/natural/stripped_skyroot_log"
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "architects_palette:block/cod_log"
},
"axis=z": {
"model": "architects_palette:block/cod_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "architects_palette:block/cod_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "architects_palette:block/salmon_log"
},
"axis=z": {
"model": "architects_palette:block/salmon_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "architects_palette:block/salmon_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "architects_palette:block/stripped_twisted_log"
},
"axis=z": {
"model": "architects_palette:block/stripped_twisted_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "architects_palette:block/stripped_twisted_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "architects_palette:block/twisted_log"
},
"axis=z": {
"model": "architects_palette:block/twisted_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "architects_palette:block/twisted_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "architects_palette:block/cod_log_top",
"side": "architects_palette:block/cod_log"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "architects_palette:block/salmon_log_top",
"side": "architects_palette:block/salmon_log"
}
}

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "architects_palette:block/stripped_twisted_log_top", "top": "architects_palette:block/stripped_twisted_log_top",
"side": "architects_palette:block/stripped_twisted_log", "side": "architects_palette:block/stripped_twisted_log"
"particle": "architects_palette:block/stripped_twisted_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "architects_palette:block/twisted_log_top", "top": "architects_palette:block/twisted_log_top",
"side": "architects_palette:block/twisted_log", "side": "architects_palette:block/twisted_log"
"particle": "architects_palette:block/twisted_log"
} }
} }

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/aspen_log_top", "top": "atmospheric:block/aspen_log_top",
"side": "atmospheric:block/aspen_log", "side": "atmospheric:block/aspen_log"
"particle": "atmospheric:block/aspen_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/grimwood_log_top", "top": "atmospheric:block/grimwood_log_top",
"side": "atmospheric:block/grimwood_log", "side": "atmospheric:block/grimwood_log"
"particle": "atmospheric:block/grimwood_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/kousa_log_top", "top": "atmospheric:block/kousa_log_top",
"side": "atmospheric:block/kousa_log", "side": "atmospheric:block/kousa_log"
"particle": "atmospheric:block/kousa_log"
} }
} }

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "atmospheric:block/laurel_log_top",
"side": "atmospheric:block/laurel_log"
}
}

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/morado_log_top", "top": "atmospheric:block/morado_log_top",
"side": "atmospheric:block/morado_log", "side": "atmospheric:block/morado_log"
"particle": "atmospheric:block/morado_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/rosewood_log_top", "top": "atmospheric:block/rosewood_log_top",
"side": "atmospheric:block/rosewood_log", "side": "atmospheric:block/rosewood_log"
"particle": "atmospheric:block/rosewood_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/stripped_aspen_log_top", "top": "atmospheric:block/stripped_aspen_log_top",
"side": "atmospheric:block/stripped_aspen_log", "side": "atmospheric:block/stripped_aspen_log"
"particle": "atmospheric:block/stripped_aspen_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/stripped_grimwood_log_top", "top": "atmospheric:block/stripped_grimwood_log_top",
"side": "atmospheric:block/stripped_grimwood_log", "side": "atmospheric:block/stripped_grimwood_log"
"particle": "atmospheric:block/stripped_grimwood_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/stripped_kousa_log_top", "top": "atmospheric:block/stripped_kousa_log_top",
"side": "atmospheric:block/stripped_kousa_log", "side": "atmospheric:block/stripped_kousa_log"
"particle": "atmospheric:block/stripped_kousa_log"
} }
} }

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "atmospheric:block/stripped_laurel_log_top",
"side": "atmospheric:block/stripped_laurel_log"
}
}

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/stripped_morado_log_top", "top": "atmospheric:block/stripped_morado_log_top",
"side": "atmospheric:block/stripped_morado_log", "side": "atmospheric:block/stripped_morado_log"
"particle": "atmospheric:block/stripped_morado_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/stripped_rosewood_log_top", "top": "atmospheric:block/stripped_rosewood_log_top",
"side": "atmospheric:block/stripped_rosewood_log", "side": "atmospheric:block/stripped_rosewood_log"
"particle": "atmospheric:block/stripped_rosewood_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/stripped_yucca_log_top", "top": "atmospheric:block/stripped_yucca_log_top",
"side": "atmospheric:block/stripped_yucca_log", "side": "atmospheric:block/stripped_yucca_log"
"particle": "atmospheric:block/stripped_yucca_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/aspen_log_top", "top": "atmospheric:block/aspen_log_top",
"side": "atmospheric:block/watchful_aspen_log", "side": "atmospheric:block/watchful_aspen_log"
"particle": "atmospheric:block/watchful_aspen_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "atmospheric:block/yucca_log_top", "top": "atmospheric:block/yucca_log_top",
"side": "atmospheric:block/yucca_log", "side": "atmospheric:block/yucca_log"
"particle": "atmospheric:block/yucca_log"
} }
} }

View 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
}
}
}

View 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
}
}
}

View 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
}
}
}

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "autumnity:block/maple_log_top", "top": "autumnity:block/maple_log_top",
"side": "autumnity:block/maple_log", "side": "autumnity:block/maple_log"
"particle": "autumnity:block/maple_log"
} }
} }

View File

@@ -1,8 +1,7 @@
{ {
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "autumnity:block/stripped_maple_log_top", "top": "autumnity:block/sappy_maple_log_top",
"side": "autumnity:block/sappy_maple_log", "side": "autumnity:block/sappy_maple_log"
"particle": "autumnity:block/sappy_maple_log"
} }
} }

View File

@@ -2,7 +2,6 @@
"parent": "block/log", "parent": "block/log",
"textures": { "textures": {
"top": "autumnity:block/stripped_maple_log_top", "top": "autumnity:block/stripped_maple_log_top",
"side": "autumnity:block/stripped_maple_log", "side": "autumnity:block/stripped_maple_log"
"particle": "autumnity:block/stripped_maple_log"
} }
} }

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "bayou_blues:block/cypress_log_top",
"side": "bayou_blues:block/cypress_log",
"particle": "bayou_blues:block/cypress_log"
}
}

View File

@@ -1,8 +0,0 @@
{
"parent": "block/log",
"textures": {
"top": "bayou_blues:block/stripped_cypress_log_top",
"side": "bayou_blues:block/stripped_cypress_log",
"particle": "bayou_blues:block/stripped_cypress_log"
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "beachparty:block/palm_log"
},
"axis=z": {
"model": "beachparty:block/palm_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "beachparty:block/palm_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "beachparty:block/stripped_palm_log"
},
"axis=z": {
"model": "beachparty:block/stripped_palm_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "beachparty:block/stripped_palm_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "beachparty:block/palm_log_top",
"side": "beachparty:block/palm_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "beachparty:block/palm_log_top_stripped",
"side": "beachparty:block/palm_log_stripped"
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/dragon_tree_log"
},
"axis=z": {
"model": "betterend:block/dragon_tree_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/dragon_tree_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/dragon_tree_stripped_log"
},
"axis=z": {
"model": "betterend:block/dragon_tree_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/dragon_tree_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/end_lotus_log"
},
"axis=z": {
"model": "betterend:block/end_lotus_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/end_lotus_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/end_lotus_stripped_log"
},
"axis=z": {
"model": "betterend:block/end_lotus_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/end_lotus_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/helix_tree_log"
},
"axis=z": {
"model": "betterend:block/helix_tree_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/helix_tree_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/helix_tree_stripped_log"
},
"axis=z": {
"model": "betterend:block/helix_tree_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/helix_tree_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/jellyshroom_log"
},
"axis=z": {
"model": "betterend:block/jellyshroom_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/jellyshroom_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/jellyshroom_stripped_log"
},
"axis=z": {
"model": "betterend:block/jellyshroom_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/jellyshroom_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/lacugrove_log"
},
"axis=z": {
"model": "betterend:block/lacugrove_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/lacugrove_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/lacugrove_stripped_log"
},
"axis=z": {
"model": "betterend:block/lacugrove_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/lacugrove_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/lucernia_log"
},
"axis=z": {
"model": "betterend:block/lucernia_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/lucernia_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/lucernia_stripped_log"
},
"axis=z": {
"model": "betterend:block/lucernia_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/lucernia_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/mossy_glowshroom_log"
},
"axis=z": {
"model": "betterend:block/mossy_glowshroom_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/mossy_glowshroom_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/mossy_glowshroom_stripped_log"
},
"axis=z": {
"model": "betterend:block/mossy_glowshroom_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/mossy_glowshroom_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/pythadendron_log"
},
"axis=z": {
"model": "betterend:block/pythadendron_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/pythadendron_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/pythadendron_stripped_log"
},
"axis=z": {
"model": "betterend:block/pythadendron_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/pythadendron_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/tenanea_log"
},
"axis=z": {
"model": "betterend:block/tenanea_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/tenanea_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/tenanea_stripped_log"
},
"axis=z": {
"model": "betterend:block/tenanea_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/tenanea_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/umbrella_tree_log"
},
"axis=z": {
"model": "betterend:block/umbrella_tree_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/umbrella_tree_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,18 @@
{
"variants": {
"axis=y": {
"model": "betterend:block/umbrella_tree_stripped_log"
},
"axis=z": {
"model": "betterend:block/umbrella_tree_stripped_log",
"x": 90,
"y": 180
},
"axis=x": {
"model": "betterend:block/umbrella_tree_stripped_log",
"x": 90,
"y": 90,
"z": 90
}
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/dragon_tree_log_top",
"side": "betterend:block/dragon_tree_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/dragon_tree_stripped_log_top",
"side": "betterend:block/dragon_tree_stripped_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/end_lotus_log_top",
"side": "betterend:block/end_lotus_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/end_lotus_stripped_log_top",
"side": "betterend:block/end_lotus_stripped_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/helix_tree_log_top",
"side": "betterend:block/helix_tree_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/helix_tree_stripped_log_top",
"side": "betterend:block/helix_tree_stripped_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/jellyshroom_log_top",
"side": "betterend:block/jellyshroom_log_side"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "block/log",
"textures": {
"top": "betterend:block/jellyshroom_stripped_log_top",
"side": "betterend:block/jellyshroom_stripped_log_side"
}
}

Some files were not shown because too many files have changed in this diff Show More