1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

56 lines
677 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Rattata",
de: "Rattfratz"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
19,
],
hp: 30,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Lunge",
de: "Ausfall"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
de: "Wirf 1 Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
}
export default card