1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 15:19:55 +00:00

73 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Celestial Storm'
const card: Card = {
name: {
en: "Swampert",
fr: "Laggron",
},
illustrator: "SATOSHI NAKAI",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
260,
],
hp: 160,
types: [
"Water",
],
evolveFrom: {
en: "Marshtomp",
fr: "Flobio",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Power Draw",
fr: "Puissance de Pioche",
},
effect: {
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, draw 3 cards.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Dans ce cas, piochez 3 cartes.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
effect: {
en: "This attack does 20 more damage times the amount of Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre dÉnergies Water attachées à ce Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card