1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

94 lines
1.6 KiB
TypeScript
Raw 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Slowbro",
fr: "Flagadoss",
de: "Lahmus"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
80,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Slowpoke",
fr: "Ramoloss",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Big Yawn",
fr: "Gros bâillement",
de: "Großer Gähner"
},
effect: {
en: "Both Slowbro and the Defending Pokémon are now Asleep.",
fr: "Flagadoss et le Pokémon Défenseur sont maintenant Endormis.",
de: "Lahmus und das Verteidigende Pokémon schlafen jetzt."
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Madkinesis",
fr: "Mentalisme",
de: "Irrkinese"
},
effect: {
en: "Does 30 damage plus 20 more damage for each Psychic Energy attached to Slowbro.",
fr: "Inflige 30 dégâts plus 20 dégâts supplémentaires pour chaque carte Énergie Psychic attachée à Flagadoss.",
de: "Dieser Angriff fügt 30 Schadenspunkte plus 20 weitere Schadenspunkte für jede an Lahmus angelegte -Energie zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
description: {
en: "If the tail-biting Shellder is thrown off in a harsh battle, it reverts to being an ordinary Slowpoke."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card