mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
1.5 KiB
TypeScript
68 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../151"
|
|
|
|
const card: Card = {
|
|
dexId: [103],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Noadkoko",
|
|
en: "Exeggutor",
|
|
es: "Exeggutor",
|
|
it: "Exeggutor",
|
|
pt: "Exeggutor",
|
|
de: "Kokowei"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Grass"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Psyko",
|
|
en: "Psychic",
|
|
es: "Psíquico",
|
|
it: "Psichico",
|
|
pt: "Psíquico",
|
|
de: "Psychokinese"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
|
|
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
|
|
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
|
|
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
|
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
|
|
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 30 Schadenspunkte mehr zu."
|
|
},
|
|
|
|
damage: "30+"
|
|
}, {
|
|
cost: ["Grass", "Grass", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Enfoncement",
|
|
en: "Hammer In",
|
|
es: "Martillear",
|
|
it: "Martello",
|
|
pt: "Martelada",
|
|
de: "Einhämmern"
|
|
},
|
|
|
|
damage: 130
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |