1 /** 2 * @param spell The text of spell, often distributed on scrolls 3 * @return Spell ID for future casts 4 */ magicnull5fun magic(spell: String): Int { 6 7 } 8 9 /** 10 * @param spell Spell ID of previously casted spell 11 * @return Spell ID for future casts 12 */ magicnull13fun magic(spell: Int): Int { 14 15 }