1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

55 lines
765 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Wizards Black Star Promos'
const card: Card = {
name: {
en: "Articuno",
},
illustrator: "Toshinao Aoki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
144,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Diamond Dust",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed, and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20,
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card