1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

61 lines
1.0 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 '../Evolutions'
const card: Card = {
name: {
en: "M Slowbro-EX",
fr: "M-Flagadoss-EX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
80,
],
hp: 220,
types: [
"Water",
],
evolveFrom: {
en: "Slowbro-EX",
fr: "Flagadoss-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Loll Roll Spin",
fr: "Tournicote",
},
effect: {
en: "This Pokémon is now Confused. During your next turn, this Pokémon's Loll Roll Spin attack does 100 more damage (before applying Weakness and Resistance).",
fr: "Ce Pokémon est maintenant Confus. Pendant votre prochain tour, lattaque Tournicote de ce Pokémon inflige 100 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card