-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert-pack.1
68 lines (61 loc) · 1.48 KB
/
convert-pack.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
convert-pack - Convert a Minecraft resource pack between versions and editions with (relative) ease.
.br
.br
Syntax:
.br
convert-pack [--options] <input-dir> <output-dir>
.br
.br
Examples:
.br
convert-pack --input-edition java --output-version 1.8.9 ./input ./output
.br
convert-pack --iv 1.12.2 --oe bedrock ./input
.br
convert-pack . ./out --verbose --input-edition bedrock --output-edition java
.br
.br
Arguments:
.br
--help | -h: Show this page.
.br
--verbose | -v: Log every file being converted.
.br
--input-version | --iv: Set the input version.
.br
--input-edition | --ie: Set the input edition.
.br
--output-version | --ov: Set the target version.
.br
--output-edition | --oe: Set the target edition.
.br
.br
Notes:
.br
Requires Node v21 or above (relies on Object.groupBy).
.br
.br
Either an edition or version needs to be provided for the input and output,
.br
since otherwise there's not enough information to convert the pack. Both
.br
can be provided for additional context if needed.
.br
.br
If an edition is not provided, it defaults to Java (since Bedrock doesn't
.br
really have versions to choose from). If a version is not provided, it
.br
defaults to the latest version for that edition (this is why either a
.br
version or edition is needed).
.br
.br
Credits:
.br
This project is powered by the Faithful database (https://faithfulpack.net).
.br
View the source at https://github.com/3vorp/convert-pack.
.br
Copyright (C) 2024 Evorp. Licensed under AGPL-3.0.
.br