Skip to content
Jay Ryan edited this page Jun 24, 2018 · 9 revisions

Offensive spells to use while hunting.

Cambrinth is not used for these spells.

Supported options:

  • skill: The skill this spell trains; combat-trainer prioritizes skills with lower field exp
  • name: The spell name
  • abbrev: The spell abbreviation, or spell name if it does not have an abbreviation
  • mana: The amount to harness (via attunement)
  • expire: Text which will trigger recasting the spell
  • harmless: Indicates the spell is can be cast while dancing
  • cast: Custom action to output instead of 'cast'
  • after-message: Action to take after the spell has been cast
  • after-matches: Text to watch for which indicates completion of the action
  • cyclic: Whether or not the spell is a cyclic
  • prep_type: Override the default behavior that choices to use tar or pre based on TM or Debil spell.
  • use_auto_mana: Uses discern to decide on the mana and cambrinth options.
  • min_threshold: Minimum amount of critters in the room to cast this spell.
  • max_threshold: Maximum amount of critters in the room to cast this spell.
  • recast_every: Cast this spell on a timer! (In seconds)

Basic examples

This would prep Fists of Faenella (FF) with 12 mana harnessed. The spell would be cast repeatedly unless your Targeted Magic skill is locked or you are dancing.

- skill: Targeted Magic
  name: Fists of Faenella
  abbrev: FF
  mana: 12

This is exactly the same as above except mana and cambrinth options will be automatically decided by the discern command.

- skill: Targeted Magic
  name: Fists of Faenella
  abbrev: FF
  use_auto_mana: true

Recast when an expiration message is seen

This would prep Devolve (DE) with 14 mana harnessed. The spell would only be cast again when which evaporate quickly into the air is seen. Since this spell is marked as harmless, it can be cast while dancing.

- skill: Debilitation
  name: Devolve
  abbrev: DE
  mana: 14
  expire: which evaporate quickly into the air
  harmless: true

Cyclic offensive spell

This would prep Damaris' Lullaby (DALU) with 6 mana harnessed. The spell would not be cast again since it is marked as a cyclic.

- skill: Debilitation
  name: Damaris' Lullaby
  abbrev: DALU
  mana: 6
  cyclic: true
  expire: this is a cyclic

Minimum and Maximum Threshold

This is very good for players that don't want to use big AOEs, say FOU, on a single target. You can make the spells work based on the critter count, i.e., FF with up to 2 critters, and FOU with at least 3.

offensive_spells: 
- name: Fists of Faenella
  cast_only_to_train: true
  max_threshold: 2
  mana: 10
  cambrinth:
  - 10
- name: Fire of Ushnish
  cast_only_to_train: true
  min_threshold: 3
  mana: 30
Clone this wiki locally