coc-damage-calculator package is meant to help Clash of Clans players to quickly calculate damages to buildings from various equipements and spells.
It provides an hydra menu to select the options.
Just press the options you need and fill the informations needed.
If you want to know if you are gonna down a building using different spells levels (earthquakes or lightnings)
use the Custom setup
option always use the higher earthquakes levels first to optimize damages.
To use correctly the Custom setup
option you have to provide the setup order.
- e: earthquake
- l: lightning
- f: fireball
- a: giant arrow
- s: rocket spear
- b: spicky ball
This package needs the hydra package to work.
(use-package hydra
:ensure t
:defer t)
(use-package coc-dc
:ensure t
:init
(require 'hydra)
:bind (("C-c c" . coc-dc-menu)))
(use-package hydra
:straight t
:defer t)
(use-package coc-dc
:straight '(coc-dc :host github
:repo "S0mbr3/coc-damage-calculator")
:init
(require 'hydra)
:bind (("C-c c" . coc-dc-menu)))