1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 16:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

77 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Cofagrigus",
fr: "Tutankafer",
es: "Cofagrigus",
it: "Cofagrigus",
pt: "Cofagrigus",
de: "Echnatoll"
},
illustrator: "tetsuya koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
563,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Yamask",
fr: "Tutafeh",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Spirit Juggling",
fr: "Jeu dEsprits",
es: "Malabarismo de Espíritus",
it: "Giocoliere delle Anime",
pt: "Malabarismo de Almas",
de: "Seelenbalance"
},
effect: {
en: "Discard any number of your Benched Pokémon. This attack does 30 more damage for each Benched Pokémon you discarded in this way.",
fr: "Défaussez autant de vos Pokémon de Banc que vous voulez. Cette attaque inflige 30 dégâts supplémentaires pour chaque Pokémon de Banc défaussé de cette façon.",
es: "Descarta cualquier cantidad de tus Pokémon en Banca. Este ataque hace 30 puntos de daño más por cada Pokémon en Banca que hayas descartado de esta manera.",
it: "Scarta un numero qualsiasi di Pokémon che hai in panchina. Questo attacco infligge 30 danni in più per ogni Pokémon in panchina scartato in questo modo.",
pt: "Descarte qualquer número dos seus Pokémon no Banco. Este ataque causa 30 pontos de dano a mais para cada Pokémon no Banco descartado desta forma.",
de: "Lege beliebig viele Pokémon von deiner Bank auf deinen Ablagestapel. Diese Attacke fügt 30 Schadenspunkte mehr mal der Anzahl der auf diese Weise von deiner Bank auf deinen Ablagestapel gelegten Pokémon zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card