1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

65 lines
1.0 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",
},
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",
},
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.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card