Compare commits

..

6 commits

5 changed files with 27 additions and 8 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
build/

View file

@ -4,15 +4,15 @@
"description": "§7The old ore textures\n§6§oCopper made by G2", "description": "§7The old ore textures\n§6§oCopper made by G2",
"name": "Old Ores", "name": "Old Ores",
"uuid": "66c6e9a8-3093-462a-9c36-dbb052165822", "uuid": "66c6e9a8-3093-462a-9c36-dbb052165822",
"version": [2, 0, 2], "version": [2, 1, 2],
"min_engine_version": [ 1, 19, 0 ] "min_engine_version": [ 1, 20, 0 ]
}, },
"modules": [ "modules": [
{ {
"description": "§7The old ore textures\n§6§oCopper made by G2", "description": "§7The old ore textures\n§6§oCopper made by G2",
"type": "resources", "type": "resources",
"uuid": "743f6949-53be-44b6-b326-398005028819", "uuid": "743f6949-53be-44b6-b326-398005028819",
"version": [2, 0, 2] "version": [2, 1, 2]
} }
] ]
} }

View file

@ -1,6 +1,6 @@
{ {
"pack":{ "pack":{
"pack_format": 12, "pack_format": 18,
"description": "§7The old ore textures\n§6§oCopper made by G2" "description": "§7The old ore textures\n§6§oCopper made by G2"
} }
} }

View file

@ -1,8 +1,11 @@
# Old Ores # Old Ores
## Where to download ## Where to download
Download latest file from the **[Releases](https://github.com/G2-Games/Old-Ores-MC/releases)** \ ### Recommended
Also available for download from **[Curseforge](https://www.curseforge.com/minecraft/texture-packs/old-ores-copper/)** and **[Modrinth](https://modrinth.com/resourcepack/old-ore-textures-(with-copper))**. Download latest file from the **[Releases](https://github.com/G2-Games/Old-Ores-MC/releases)**
### Other
Also available for download from **[Curseforge](https://www.curseforge.com/minecraft/texture-packs/old-ores-copper/)**, **[Modrinth](https://modrinth.com/resourcepack/old-ore-textures-(with-copper))**, and **[Planet Minecraft](https://www.planetminecraft.com/texture-pack/old-ore-textures-pre-1-17-includes-copper/)**.
## What is this pack for? ## What is this pack for?
The changes it makes to the game are: The changes it makes to the game are:
@ -11,7 +14,9 @@ The changes it makes to the game are:
- Changes copper to a custom texture that I think fits with the old ores - Changes copper to a custom texture that I think fits with the old ores
## Texture Showcase ## Texture Showcase
![Showcase](https://g2games.dev/Assets/hosted_files/mc/showcase.png) <p align="center">
<img src="https://g2games.dev/Assets/hosted_files/mc/showcase.png" />
</p>
## Compatibility ## Compatibility
This pack is compatible with 1.17.x and up for now. It will be updated as Minecraft is updated. This pack is compatible with 1.17.x and up for now. It will be updated as Minecraft is updated.

13
build.sh Normal file → Executable file
View file

@ -1 +1,14 @@
version="2.1.2"
currentdir=$(pwd)
mkdir -p build/
cd build/ || exit 1
rm *
exa -lh
7z a -tzip "Old.Ores.$version-Java.zip" ../Java/*
7z a -tzip "Old.Ores.$version-Bedrock.mcpack" ../Bedrock/*
cd "$currentdir" || exit 1