add default configs :3
This commit is contained in:
parent
9056c04210
commit
2c7b2bf868
133 changed files with 7853 additions and 1 deletions
11
config/yosbr/combatroll/client.json5
Normal file
11
config/yosbr/combatroll/client.json5
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"playCooldownSound": true,
|
||||
"playCooldownFlash": true,
|
||||
"playRollSound": true,
|
||||
"hudArrowColor": 5540067,
|
||||
"hudBackgroundOpacity": 75,
|
||||
"showWhenFull": true,
|
||||
"showHUDInCreative": false,
|
||||
"showKeybinding": true,
|
||||
"keybindingLabelPosition": "LEFT"
|
||||
}
|
||||
23
config/yosbr/combatroll/enchantments.json
Normal file
23
config/yosbr/combatroll/enchantments.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"longfooted": {
|
||||
"enabled": true,
|
||||
"max_level": 5,
|
||||
"min_cost": 12,
|
||||
"step_cost": 12,
|
||||
"bonus_per_level": 1.0
|
||||
},
|
||||
"acrobat": {
|
||||
"enabled": true,
|
||||
"max_level": 10,
|
||||
"min_cost": 15,
|
||||
"step_cost": 14,
|
||||
"bonus_per_level": 0.1
|
||||
},
|
||||
"multi_roll": {
|
||||
"enabled": true,
|
||||
"max_level": 4,
|
||||
"min_cost": 15,
|
||||
"step_cost": 17,
|
||||
"bonus_per_level": 1.0
|
||||
}
|
||||
}
|
||||
9
config/yosbr/combatroll/hud_config.json
Normal file
9
config/yosbr/combatroll/hud_config.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"rollWidget": {
|
||||
"origin": "BOTTOM",
|
||||
"offset": {
|
||||
"field_1343": 108.0,
|
||||
"field_1342": -12.0
|
||||
}
|
||||
}
|
||||
}
|
||||
22
config/yosbr/combatroll/server.json5
Normal file
22
config/yosbr/combatroll/server.json5
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
// The number of game ticks players become invulnerable upon rolling
|
||||
"invulnerable_ticks_upon_roll": 0,
|
||||
// The duration of the roll ability, expressed as a number of ticks, during which the player cannot use item/attack/jump etc...
|
||||
"roll_duration": 8,
|
||||
// Allows Vanilla Minecraft auto jump feature to work while rolling
|
||||
"allow_auto_jump_while_rolling": true,
|
||||
// Allows jumping while rolling. WARNING! Setting this to `true` breaks roll distance attribute and enchantment
|
||||
"allow_jump_while_rolling": false,
|
||||
// Allows combat roll while the player has its weapon on cooldown
|
||||
"allow_rolling_while_weapon_cooldown": false,
|
||||
// Allows combat roll while the player is in the air. WARNING! Setting this to `true` breaks roll distance attribute and enchantment
|
||||
"allow_rolling_while_airborn": false,
|
||||
// The amount of exhaust (hunger) to be added to the player on every roll
|
||||
"exhaust_on_roll": 0.10000000149011612,
|
||||
// The amount of food level above which players can do a roll
|
||||
"food_level_required": 6.0,
|
||||
// The cooldown duration of the combat roll ability expressed in seconds
|
||||
"roll_cooldown": 4.0,
|
||||
// Default roll distance attribute is `3`. Settings this to `1` will make it `4`. Warning! Attribute based scaling does not effect this.
|
||||
"additional_roll_distance": 0.0
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue