import { ICreature } from "../../interfaces/i-creature"; export const ARCTIC_NOMAD: ICreature = { ac: 12, actions: [ { title: "Dagger", description: "Melee Attack. +1 to hit. Range 5ft. 1d4+1 piercing damage." }, { title: "Dagger Thrown", description: "Ranged Attack. +1 to hit. Range 20ft/60ft. 1d4+1 piercing damage." } ], alignment: "Neutral Good", challenge: "1", conditionImmunities: [], damageImmunities: [], damageResistances: ["Cold"], damageWeaknesses: [], description: "", features: [], hp: 25, inventory: ["1 Dagger", "1 Fur Coat"], languages: ["Common"], reactions: [], savingThrows: [], senses: ["Passive Perception 15"], size: "Medium", skills: ["Perception +5", "Nature +5", "Survival +5"], speed: "30 ft.", stats: { str: 13, dex: 13, con: 18, int: 10, wis: 14, cha: 10 }, type: "Humanoid" };