1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] eea5c5147b
editor: add rarities for 151 set (#507)
Co-authored-by: Avior <git@avior.me>
2024-07-03 12:38:33 +02:00

55 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
dexId: [58],
set: Set,
name: {
fr: "Caninos",
en: "Growlithe",
es: "Growlithe",
it: "Growlithe",
pt: "Growlithe",
de: "Fukano"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
fr: "Évaporation",
en: "Vaporize",
es: "Vaporizar",
it: "Vaporizzare",
pt: "Evaporar",
de: "Vaporisieren"
},
effect: {
fr: "Défaussez une Énergie Water du Pokémon Actif de votre adversaire.",
en: "Discard a Water Energy from your opponent's Active Pokémon.",
es: "Descarta 1 Energía Water del Pokémon Activo de tu rival.",
it: "Scarta un'Energia Water dal Pokémon attivo del tuo avversario.",
pt: "Descarte uma Energia Water do Pokémon Ativo do seu oponente.",
de: "Lege 1 Water-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 10
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card