Skip to content

Commit

Permalink
v2.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
smell-of-curry committed Dec 24, 2024
1 parent 5fc4df0 commit d82f185
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 11 deletions.
31 changes: 24 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,25 @@
**Update v2.12.3**
**Update v2.12.4**

- Merged Pull Request from @TheblueJo which
- Fixed missing booster energy lang map
- Fixed black augurite, peat block,tart apple, sweet apple, and cracked pot items.
- Added in Elf NPC Model & Animations
- Added in Gallade and Mega Gallade by [Modeler] DCRdemonlord
- Updated Terrain Textures resource pack name to match pokebedrock.
- Added in 11 New Models
- Gardevoir Christmas by @dcrdemonlord
- Gardevoir Mega by @dcrdemonlord
- Gallade Christmas by @dcrdemonlord
- Gallade Christmas Mega by @dcrdemonlord
- Darumaka & Darumaka Galar by @ismegames
- Darmanitan & Darmanitan-Zen by @ismegames
- Darmanitan Galar & Darmanitan-Galar-Zen by @ismegames
- Armarouge Christmas by @ismegames
- Added in a new `items.json` file that stores a item map of PokeBedrock Behavior Item Type ID's to there display icon referenced in `./textures/item_texture.json`.
- This new file, is generated by the behavior pack like `pokemon.json`, it's use case is to standardize `texts` and `item_textures` to ensure nothing is missing.
- With this new file a new script `generateItemLang.ts` was added. This script will append `Missing Items` to `./texts/en_US.lang` to show what items are missing names, and to quickly make a fix.
- Additionally this file added the ability to make a test script checking if each item has a valid icon (ADDING TESTS!).
- Changed script name of `generateEntityFiles` => `generatePokemonFiles`, as it makes more sense of what it is used for.
- `generatePokemonFiles` now will update the `./texts/en_US.lang` Pokemon Spawn Eggs category to auto generate name conversions.
- `generatePokemonFiles` will also now update the `./texts/en_US.lang` Dismount Messages category to auto generate dismount messages, previously done by resource pack.
- This feature also required `canMount` to be added to `pokemon.json`, generated by behavior pack.
- `blocks.json` now have a standard format version, and was moved to top.
- Added in Missing Item Textures:
- Galarica Cuff
- Galarica Wreath
- Masterpiece Teacup
- Unremarkable Teacup
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"description": "pack.description",
"min_engine_version": [1, 21, 5],
"uuid": "358dc189-8d9e-4fdb-b4e1-f8e0fb855f9a",
"version": [2, 12, 3]
"version": [2, 12, 4]
},
"modules": [
{
"description": "Resources Module",
"type": "resources",
"uuid": "388de949-18e5-4228-a447-f63237aa45a2",
"version": [2, 12, 3]
"version": [2, 12, 4]
}
],
"metadata": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pokebedrock-res",
"description": "Welcome to the PokeBedrock Resource Pack repository! This resource pack is designed for the Minecraft Bedrock server, PokeBedrock. It allows users to easily download, fix bugs, change textures, and modify the server's appearance.",
"version": "2.12.3",
"version": "2.12.4",
"main": "scripts/build.ts",
"scripts": {
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion texts/en_US.lang
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pack.name=§lPokeBedrock v2.12.3 RES
pack.name=§lPokeBedrock v2.12.4 RES
pack.description=§aA High Level Pokemon Addon Created by Smell of curry for Minecraft Bedrock

## Orbs
Expand Down
12 changes: 12 additions & 0 deletions textures/item_texture.json
Original file line number Diff line number Diff line change
Expand Up @@ -6312,6 +6312,18 @@
},
"tinkatonchristmas": {
"textures": "textures/sprites/default/tinkatonchristmas.png"
},
"gardevoirchristmas": {
"textures": "textures/sprites/default/gardevoirchristmas.png"
},
"galladechristmas": {
"textures": "textures/sprites/default/galladechristmas.png"
},
"armarougechristmas": {
"textures": "textures/sprites/default/armarougechristmas.png"
},
"galladechristmasmega": {
"textures": "textures/sprites/default/galladechristmasmega.png"
}
}
}

0 comments on commit d82f185

Please sign in to comment.