25 lines
708 B
JavaScript
25 lines
708 B
JavaScript
|
|
export const SPELLS = [
|
|
{
|
|
id: 'fireball',
|
|
name: 'Bola de Fuego',
|
|
type: 'attack',
|
|
cost: 1,
|
|
range: 12, // Arbitrary line of sight
|
|
damageDice: 1,
|
|
damageBonus: 'hero_level', // Dynamic logic
|
|
area: 2, // 2x2
|
|
description: "Elige un área de 2x2 casillas en línea de visión. Cada miniatura sufre 1D6 + Nivel herois."
|
|
},
|
|
{
|
|
id: 'healing_hands',
|
|
name: 'Manos Curadoras',
|
|
type: 'heal',
|
|
cost: 1,
|
|
range: 'board', // Same board section
|
|
healAmount: 1,
|
|
target: 'all_heroes',
|
|
description: "Todos los Aventureros en la misma sección de tablero recuperan 1 Herida."
|
|
}
|
|
];
|