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

70 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Skyridge'
const card: Card = {
name: {
en: "Rattata",
de: "Rattfratz"
},
illustrator: "Masako Yamashita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
19,
],
hp: 30,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Call for Friends",
de: "Freunds holen"
},
effect: {
en: "Search your deck for a Baby Pokémon or Basic Pokémon and put it onto your bench. Shuffle your deck afterward. (You can't use this attack it your bench is full.)",
de: "Durchsuche dein Deck nach einem Baby-Pokémon oder einem basis-Pokémon und lege sie auf deine Bank. Mische dein Deck danach. (Du kannst diesen Angriff nicht verwenden, wenn deine Bank voll ist.)"
},
},
{
cost: [
"Colorless",
],
name: {
en: "Body Slam",
de: "Bodyslam"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
de: "Wirf ein Münze. Bei \"Kopf\" ist das verteidigende Pokémon jetzt gelähmt."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card