1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

76 lines
1.8 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 '../Aquapolis'
const card: Card = {
name: {
en: "Slowbro",
fr: "Flagadoss",
de: "Lahmus"
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
80,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Slowpoke",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Dense Body",
fr: "Corps dense",
de: "Dense Body"
},
effect: {
en: "Any damage done to Slowbro by attacks from Basic Pokémon (excluding Baby Pokémon) is reduced by 20.",
fr: "Tous les dégâts infligés à Flagadoss par des attaques de Pokémon de base (sans compter les Bébés Pokémon) sont réduits de 20.",
de: "Any damage done to Slowbro by attacks from Basic Pokémon (excluding Baby Pokémon) is reduced by 20."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Energy Cannon",
fr: "Canon à énergie",
de: "Energy Cannon"
},
effect: {
en: "This attack does 30 damage plus 10 more damage for each Energy attached to Slowbro but not used to pay for this attack's Energy cost. You can't add more than 20 damage this way. y.",
fr: "Cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Flagadoss mais non utilisée pour payer le coût d'Énergie de cette attaque. Vous ne pouvez pas ajouter plus de 20 dégâts de cette façon.",
de: "This attack does 30 damage plus 10 more damage for each Energy attached to Slowbro but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card