1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 10:49:55 +00:00

78 lines
991 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Next Destinies'
const card: Card = {
name: {
en: "Articuno",
fr: "Artikodin",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
144,
],
hp: 120,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Ice Beam",
fr: "Laser Glace",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 50,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Ice Wing",
fr: "Aile Glace",
},
damage: 80,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card