Battle Axes
For those who prefer going berserk with axes this mod adds battle and throwing axes.
Axes
Bearded Axe and Bearded Battle Axe
- These are battle axes. The first one can be crafted by anyone, the latter can only be crafted by Wigfrid. They deal the same damage and have the same durability as the Spear and Battle Spear, respectively.
- Sweeping Blow: There’s a chance you’ll land a sweeping blow, hitting up to 3 additional targets. Each hit will deliver less damage and significantly increase the loss in durability.
- Chopping: While both can be used for chopping wood, they are not as sturdy as a normal axe.
Dane Axe
- Every berserks first choice: High damage (the same as the Dark Sword), high range, increased Sweeping Blow chance.
- Swinging it makes you quite hungry. If you’re exhausted, it will drain your health. So if you’re falling into a rage, you might end up as dead as your foes.
Francisca
- A throwing axe.
- Crippling: Each hit cumulatively slows your target down for some time.
- Auto-Equipping: Axes don’t stack, but after throwing an axe the next one will be automatically equipped.
Legendary Axes
When enabled during world generation, this mod might add some Easter egg axes to caves.
Server Tag
This mod’s server tag, which can be used to filter servers: battle axes
Configuration
Default values are highlighted.
- Bearded Axe recipe
- Disabled: Disables crafting
- Default: Science Machine, 1x Flint, 1x Log, 1x Rope
- Hard: Alchemy Engine, 2x Beard Hair, 1x Flint, 1x Log
- Bearded Battle Axe recipe
- Disabled: Disables crafting
- Default: Science Machine, 2x Flint, 2x Gold Nuggets, 1x Log
- Hard: Alchemy Engine, 1x Axe, 2x Beard Hair, 2x Gold Nuggets
- Dane Axe recipe
- Disabled: Disables crafting
- Default: Science Machine, 2x Flint, 2x Log, 50 HP
- Hard: Alchemy Engine, 1x Axe, 2x Red Cap, 60 HP
- Francisca recipe
- Disabled: Disables crafting
- Default: Science Machine, 1x Flint, 1x Log, 2x Silk
- Hard: Alchemy Engine, 2x Beard Hair, 1x Flint, 1x Log
- Spawn Easter eggs: Spawn Easter eggs in newly generated worlds
- Disabled
- Forest
- Caves
- All worlds
Dedicated Servers
To configure this mod on a dedicated server, edit modoverrides.lua to look like this:
return { — Your other mods — […] — Battle Axes ["workshop-676585471"] = { enabled = true, configuration_options = { bearded_axe_recipe = "DEFAULT", — the difficulty of the recipe, either "DISABLED", "DEFAULT" or "HARD" bearded_battle_axe_recipe = "DEFAULT", — the difficulty of the recipe, either "DISABLED", "DEFAULT" or "HARD" dane_axe_recipe = "DEFAULT", — the difficulty of the recipe, either "DISABLED", "DEFAULT" or "HARD" throwing_axe_recipe = "DEFAULT", — the difficulty of the recipe, either "DISABLED", "DEFAULT" or "HARD" spawn_easter_eggs = "CAVES", — where to spawn easter eggs, either "DISABLED", "FOREST", "CAVES" or "ALL_WORLDS" }, }, }