1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

65 lines
817 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Alolan Vulpix",
fr: "Goupix dAlola",
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
37,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
name: {
en: "Roar",
fr: "Hurlement",
},
effect: {
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
},
{
cost: [
"Water",
],
name: {
en: "Icy Snow",
fr: "Verglas",
},
damage: 10,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card