Skip to content

Commit 02ed11e

Browse files
committed
Update for Minecraft 1.21.5
1 parent 01a7792 commit 02ed11e

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Babel Book Loot v2.1
1+
# Babel Book Loot v2.2
22

33
![Logo](readme_images/logo.png)
44

55
Babel Book Loot is a customizable Minecraft data pack that adds over 160 pre-written lore books to various loot tables. You can expand the library by adding your own books.
66

7-
The pack is compatible with Minecraft 1.21.4 and likely works with older versions.
7+
The pack is compatible with Minecraft 1.21.5 and likely works with older versions.
88

99
![Demo](readme_images/babel_demo.webp)
1010

1111
## Quick Start
12-
1. **Download the Data Pack**: [Download babel_v2.1.zip](https://github.com/JiFish/babel/releases/download/v2.1/babel_v2.1.zip).
12+
1. **Download the Data Pack**: [Download babel_v2.2.zip](https://github.com/JiFish/babel/releases/download/v2.2/babel_v2.2.zip).
1313
2. **Install**: Place the downloaded `.zip` file in your Minecraft world's `datapacks` directory.
1414

1515
## Gameplay Features
@@ -19,20 +19,20 @@ The pack is compatible with Minecraft 1.21.4 and likely works with older version
1919

2020
## Pre-Customized Versions
2121
Additional variations of the pack offer tweaked mechanics:
22-
- **[babel-bookish-zombies_v2.1.zip](https://github.com/JiFish/babel/releases/download/v2.1/babel-bookish-zombies_v2.1.zip)**: Zombies can drop books when killed by a player.
23-
- **[babel-only-chests_v2.1.zip](https://github.com/JiFish/babel/releases/download/v2.1/babel-only-chests_v2.1.zip)**: Books are chest-exclusive (no fishing or raid reward).
24-
- **[babel-no-libraries_2.1.zip](https://github.com/JiFish/babel/releases/download/v2.1/babel-no-libraries_v2.1.zip)**: Removes Lost Libraries.
25-
- **[babel-fairytales_2.1.zip](https://github.com/JiFish/babel/releases/download/v2.1/babel-fairytales_v2.1.zip)**: Replaces lore books with public domain fairy tales.
26-
- **[babel-recipe_v2.1.zip](https://github.com/JiFish/babel/releases/download/v2.1/babel-recipe_v2.1.zip)**: Adds the below crafting recipe for random books.
22+
- **[babel-bookish-zombies_v2.2.zip](https://github.com/JiFish/babel/releases/download/v2.2/babel-bookish-zombies_v2.2.zip)**: Zombies can drop books when killed by a player.
23+
- **[babel-only-chests_v2.2.zip](https://github.com/JiFish/babel/releases/download/v2.2/babel-only-chests_v2.2.zip)**: Books are chest-exclusive (no fishing or raid reward).
24+
- **[babel-no-libraries_2.1.zip](https://github.com/JiFish/babel/releases/download/v2.2/babel-no-libraries_v2.2.zip)**: Removes Lost Libraries.
25+
- **[babel-fairytales_2.1.zip](https://github.com/JiFish/babel/releases/download/v2.2/babel-fairytales_v2.2.zip)**: Replaces lore books with public domain fairy tales.
26+
- **[babel-recipe_v2.2.zip](https://github.com/JiFish/babel/releases/download/v2.2/babel-recipe_v2.2.zip)**: Adds the below crafting recipe for random books.
2727

2828
![Using: 1 Book and Quill, 1 Soul Sand Block, 1 Chest, and 1 Emerald.](readme_images/optional_recipe.png)
2929

3030
## Advanced Customization with Babel Builder
3131
The Babel Builder tool lets you customize your pack further:
3232

3333
1. **Download the Tool**:
34-
- [babel-builder-windows_v2.1.zip](https://github.com/JiFish/babel/releases) (Windows)
35-
- [babel-builder-python_v2.1.zip](https://github.com/JiFish/babel/releases) (Python)
34+
- [babel-builder-windows_v2.2.zip](https://github.com/JiFish/babel/releases) (Windows)
35+
- [babel-builder-python_v2.2.zip](https://github.com/JiFish/babel/releases) (Python)
3636
2. **Run the Tool**:
3737
- Windows: `babel.exe`
3838
- Python: `python babel.py`
@@ -129,9 +129,9 @@ python build_loottable.py config.yaml > books.json
129129
- Reach out via Mastodon: [@joe@social.jifish.co.uk](https://social.jifish.co.uk/@joe).
130130

131131
## Licensing
132-
- Loot tables you generate with text you own are yours to use freely.
132+
- Loot tables you generate with text you own are yours to use freely. A credit is appreciated but not required.
133133
- Public domain books are sourced from [Project Gutenberg](https://www.gutenberg.org/).
134-
- Babel tool and data pack are copyright Joseph Fowler. A credit is appreciated but not required.
134+
- Babel tool and data pack are copyright Joseph Fowler.
135135

136136
## Disclaimer
137137
Software is provided "as is," without warranty or liability. Use at your own risk.

babel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def chance_calculation(config):
2323

2424

2525
isCompiled = getattr(sys, 'frozen', False)
26-
version = "v2.1%s" % (' (Windows)' if isCompiled else '')
27-
minecraft_version = "1.21.4"
26+
version = "v2.2%s" % (' (Windows)' if isCompiled else '')
27+
minecraft_version = "1.21.5"
2828

2929
parser = argparse.ArgumentParser()
3030
parser.add_argument('filename', help='Optional config filename. (default: %(default)s)', nargs='?', default='config.yaml')

build_datapack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
compression = zipfile.ZIP_STORED
1414

1515
min_pack_format = 57
16-
pack_format = 61
16+
pack_format = 71
1717

1818
extracted_data_directory = None
1919

0 commit comments

Comments
 (0)