mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
68 lines
1.2 KiB
TypeScript
68 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldea Evolved"
|
|
|
|
const card: Card = {
|
|
dexId: [574],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Scrutella",
|
|
en: "Gothita",
|
|
es: "Gothita",
|
|
it: "Gothita",
|
|
pt: "Gothita",
|
|
de: "Mollimorba"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Écras'Face",
|
|
en: "Pound",
|
|
es: "Destructor",
|
|
it: "Botta",
|
|
pt: "Pancada",
|
|
de: "Klaps"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Vague Étrange",
|
|
en: "Eerie Wave",
|
|
es: "Onda Sobrecogedora",
|
|
it: "Ondamistero",
|
|
pt: "Onda Misteriosa",
|
|
de: "Gespenstische Woge"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
|
en: "Your opponent's Active Pokémon is now Confused.",
|
|
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
|
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
|
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
|
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |