mirror of
https://github.com/G2-Games/Old-Ores-MC.git
synced 2025-06-23 07:42:52 -05:00
Compare commits
6 commits
1a7830a435
...
d61e1b5f77
Author | SHA1 | Date | |
---|---|---|---|
|
d61e1b5f77 | ||
|
2dc704b20d | ||
ea4b41fef4 | |||
2e0aaed9e8 | |||
0f5280da70 | |||
ced7e64b8f |
5 changed files with 27 additions and 8 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
build/
|
|
@ -4,15 +4,15 @@
|
|||
"description": "§7The old ore textures\n§6§oCopper made by G2",
|
||||
"name": "Old Ores",
|
||||
"uuid": "66c6e9a8-3093-462a-9c36-dbb052165822",
|
||||
"version": [2, 0, 2],
|
||||
"min_engine_version": [ 1, 19, 0 ]
|
||||
"version": [2, 1, 2],
|
||||
"min_engine_version": [ 1, 20, 0 ]
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"description": "§7The old ore textures\n§6§oCopper made by G2",
|
||||
"type": "resources",
|
||||
"uuid": "743f6949-53be-44b6-b326-398005028819",
|
||||
"version": [2, 0, 2]
|
||||
"version": [2, 1, 2]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"pack":{
|
||||
"pack_format": 12,
|
||||
"pack_format": 18,
|
||||
"description": "§7The old ore textures\n§6§oCopper made by G2"
|
||||
}
|
||||
}
|
||||
|
|
11
README.md
11
README.md
|
@ -1,8 +1,11 @@
|
|||
# Old Ores
|
||||
|
||||
## Where to download
|
||||
Download latest file from the **[Releases](https://github.com/G2-Games/Old-Ores-MC/releases)** \
|
||||
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))**.
|
||||
### Recommended
|
||||
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?
|
||||
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
|
||||
|
||||
## Texture Showcase
|
||||

|
||||
<p align="center">
|
||||
<img src="https://g2games.dev/Assets/hosted_files/mc/showcase.png" />
|
||||
</p>
|
||||
|
||||
## Compatibility
|
||||
This pack is compatible with 1.17.x and up for now. It will be updated as Minecraft is updated.
|
||||
|
|
15
build.sh
Normal file → Executable file
15
build.sh
Normal file → Executable 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
|
||||
|
|
Loading…
Reference in a new issue