-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changes * 磁铁可以吸起掉落中的铁砧了 * 将磁铁可以吸起掉落中的铁砧设置为可配置的 修改data/anc/functions/config.mcfunction将$ancAttractingFalling的ancConfig计分板即可开关此功能 * 经验修补2现在支持0-64之间任意数量经验瓶 修改data/anc/functions/config.mcfunction将$ancExperienceRepair的ancConfig计分板可以控制单个经验瓶修复的耐久值 * Additives * 物品(具体合成方式请查看官网) * 汤圆(生) * 汤圆 * 海绵芽球 * 更好的发射器可以用来挤牛奶和繁殖动物了 * Fixed Bugs * ANC-000048 4个海洋之果才能砸出1个海洋之核 * ANC-000049 批量合成海洋之刃时海晶碎片优先合成海晶石 * ANC-000050 分解与辊压配方均失效 * ANC-000051 煎五毒散未生效 * ANC-000052 v0.5.3 被qc激活的活塞推出的铁砧无法正常掉落 * ANC-000053 v0.5.2 使用“方块破坏”功能时,当被破坏方块可以被粉碎时,被破坏方块会先被粉碎再被破坏 * ANC-000054 v0.5.4-pre1 磁铁吸取的铁砧无法完成辊压和分解操作 * ANC-000055 v0.5.4-pre2 鞘翅分解失效 * ANC-000056 v0.5.4-pre2 五毒散只有第一次吃有效 * ANC-000056 v0.5.4-pre3 五毒散无论如何都会有中毒效果 * ANC-000057 v0.5.4-pre3 引雷II失效 * ANC-000058 v0.5.4-pre4 汤圆合成数量与介绍不同 * ANC-000059 v0.5.4-pre4 引雷Ⅱ失效
- Loading branch information
Showing
12 changed files
with
81 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
tellraw @s {"translate": "Please install the correct resource pack","with":[{"text": "0.5.4-pre4","color": "gold","bold": true}]} | ||
tellraw @s {"translate": "Please install the correct resource pack","with":[{"text": "0.5.4","color": "gold","bold": true}]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"color": "gold" | ||
}, | ||
{ | ||
"text": " v0.5.4-pre4", | ||
"text": " v0.5.4", | ||
"color": "gold" | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
xlrd~=2.0.1 | ||
opencv-python~=4.5.4.60 | ||
numpy~=1.21.4 | ||
imageio~=2.13.3 | ||
matplotlib~=3.5.0 | ||
zipfile39~=0.0.4.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import json | ||
import os.path | ||
from . import pro_dir | ||
from .lib import readConfig | ||
import zipfile | ||
|
||
|
||
def pack(): | ||
pack_mcmeta = os.path.join(pro_dir, 'pack.mcmeta') | ||
pmm = json.loads(open(pack_mcmeta, 'r+', encoding='utf-8').read()) | ||
version = pmm['pack']['description'][1]['text'] | ||
version = version[2:] | ||
name = readConfig.getConfig('settings', 'pack_name').format(version=version, mcv=readConfig.getConfig('settings', 'mcv')) | ||
|
||
data = os.path.join(pro_dir, 'data') | ||
assets = os.path.join(pro_dir, 'assets') | ||
pack_png = os.path.join(pro_dir, 'pack.png') | ||
license_f = os.path.join(pro_dir, 'LICENSE') | ||
|
||
z = zipfile.ZipFile(name, 'w') | ||
z.write(pack_png, "pack.png") | ||
z.write(pack_mcmeta, 'pack.mcmeta') | ||
z.write(license_f, 'LICENSE') | ||
pre_len = len(os.path.dirname(data)) | ||
for parent, dirnames, filenames in os.walk(data): | ||
for filename in filenames: | ||
pathfile = os.path.join(parent, filename) | ||
arcname = pathfile[pre_len:].strip(os.path.sep) # 相对路径 | ||
z.write(pathfile, arcname) | ||
pre_len = len(os.path.dirname(assets)) | ||
for parent, dirnames, filenames in os.walk(assets): | ||
for filename in filenames: | ||
pathfile = os.path.join(parent, filename) | ||
arcname = pathfile[pre_len:].strip(os.path.sep) # 相对路径 | ||
z.write(pathfile, arcname) | ||
z.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters