This commit is contained in:
2023-09-09 17:29:47 +02:00
parent d4875ea281
commit 0ea137dc58
17 changed files with 232 additions and 19 deletions

View File

@@ -0,0 +1,27 @@
#Easy to access switches to toggle side features on and off.
#Most of them requires server restart or datapack reload. All of them, actually.
[features]
#For those who wants to remove Spirit Orbs generated in the world, more specifically...
# * Spirit Orbs generated in various chests
# * Spirit Orbs dropped by spawners and such
#Note that bargain recipe for Heart Containers/Stamina Vessels will persist, even if this option is disabled.
spiritOrbGens = true
#For those who wants to remove entirety of Heart Containers from the game, more specifically...
# * Heart Containers obtained by "challenges" (i.e. Killing dragon, wither, raid)
# * Bargains using Heart Containers (custom recipes won't be affected)
#Note that if this option is disabled while staminaVessels is enabled, "challenges" will drop stamina vessels instead.
heartContainers = true
#For those who wants to remove entirety of Stamina Vessels from the game, more specifically...
# * Bargains using Stamina Vessels (custom recipes won't be affected)
staminaVessels = true
#For those who wants to remove all structures added by this mod. Requires restart.
structures = true
[debug]
debugPlayerMovement = false
traceMovementPacket = false
traceVesselPacket = false
traceBargainPacket = false
traceWindPacket = false

View File

@@ -0,0 +1,74 @@
#Configuration file for player states.
#You can adjust stamina delta (negative value means consumption / positive value means gain) and
#recovery delay (in ticks) of all player states registered in the game.
#To reload the config, use the following command: /paraglider reloadPlayerStates
#
[paraglider]
[paraglider.ascending]
#Range: > -2147483648
staminaDelta = -3
#Range: > 0
recoveryDelay = 10
[paraglider.breathing_underwater]
#Range: > -2147483648
staminaDelta = 20
#Range: > 0
recoveryDelay = 0
[paraglider.flying]
#Range: > -2147483648
staminaDelta = 20
#Range: > 0
recoveryDelay = 0
[paraglider.idle]
#Range: > -2147483648
staminaDelta = 20
#Range: > 0
recoveryDelay = 0
[paraglider.midair]
#Range: > -2147483648
staminaDelta = 0
#Range: > 0
recoveryDelay = 0
[paraglider.on_vehicle]
#Range: > -2147483648
staminaDelta = 20
#Range: > 0
recoveryDelay = 0
[paraglider.panic_paragliding]
#Range: > -2147483648
staminaDelta = -3
#Range: > 0
recoveryDelay = 10
[paraglider.paragliding]
#Range: > -2147483648
staminaDelta = -3
#Range: > 0
recoveryDelay = 10
[paraglider.running]
#Range: > -2147483648
staminaDelta = -10
#Range: > 0
recoveryDelay = 10
[paraglider.swimming]
#Range: > -2147483648
staminaDelta = -6
#Range: > 0
recoveryDelay = 10
[paraglider.underwater]
#Range: > -2147483648
staminaDelta = 3
#Range: > 0
recoveryDelay = 0

View File

@@ -0,0 +1,41 @@
'offhand' : '{Count:1b,id:"minecraft:shield",tag:{Damage:0}}',
'head' : '',
'chest' : '',
'legs' : '',
'feet' : '{Count:1b,id:"minecraft:leather_boots",tag:{Damage:0}}',
0 : '{Count:1b,id:"minecraft:iron_sword",tag:{Damage:0}}',
1 : '{Count:16b,id:"minecraft:bread"}',
2 : '{Count:1b,id:"patchouli:guide_book",tag:{"patchouli:book": "patchouli:patatapack_guide"}}',
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 : '',

View File

@@ -0,0 +1,6 @@
{
// When this is set, wou won't be able to use the elevation feature of travel anchors
// but you'll teleport to the anchor you're looking at when jumping on another travel anchor
// This is a client option so each player can adjust it as they prefer.
"disable_elevation": false
}

View File

@@ -0,0 +1,17 @@
{
// Fire an EntityTeleportEvent before allowing the teleport.
// This allows other mods to prevent the teleport or change the destination.
"fireTeleportEvent": true,
// The maximum angle you can look at the Travel Anchor to teleport.
// Minimum: 1.0
"max_angle": 30,
// The maximum distance you are allowed to teleport.
// Minimum: 1.0
"max_distance": 64,
// The maximum distance you can short-range teleport with shift-click.
// Range: 2.0 - 15.0
"max_short_tp_distance": 7
}