1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

75 lines
958 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Chatot",
de: "Plaudagei"
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
441,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Me First",
de: "Egotrip"
},
effect: {
en: "Draw a card.",
de: "Ziehe 1 Karte."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Tone-Deaf",
de: "Unmusikalisch"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
de: "Wirf 1 Münze. Bei 'Kopf' ist das Verteidigende Pokémon jetzt verwirrt."
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card