mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
72 lines
1.3 KiB
TypeScript
72 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Aquapolis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Slowpoke",
|
||
fr: "Ramoloss",
|
||
de: "Flegmon"
|
||
},
|
||
illustrator: "Aya Kusube",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
79,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fishing Tail",
|
||
fr: "Queue de pêche",
|
||
de: "Angelschweif"
|
||
},
|
||
effect: {
|
||
en: "Search your discard pile for a Baby Pokémon, Basic Pokémon, Evolution card, or basic Energy card, show it to your opponent, and then put it into your hand.",
|
||
fr: "Cherchez dans votre pile de défausse une carte Bébé Pokémon, Pokémon de base ou Évolution, ou une Carte Énergie de base. Montrez-la à votre adversaire et ajoutez-la ensuite à votre main.",
|
||
de: "Durchsuche deinen Ablagestapel nach einem Baby-Pokémon, einem Basis-Pokémon, einer Entwicklungskarte oder einer Basis-Energiekarte, zeige sie deinem Gegner und nimm sie auf deine Hand."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bite",
|
||
fr: "Morsure",
|
||
de: "Biss"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|