1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00

66 lines
911 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 '../Yellow A Alternate'
const card: Card = {
name: {
en: "Alolan Vulpix",
fr: "Goupix dAlola",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
37,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
name: {
en: "Beacon",
fr: "Flambeau",
},
effect: {
en: "Search your deck for up to 2 Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez jusquà 2 Pokémon dans votre deck, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Icy Snow",
fr: "Verglas",
},
damage: 20,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card