1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

73 lines
1.3 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 '../Primal Clash'
const card: Card = {
name: {
en: "Swampert",
fr: "Laggron",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
260,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Marshtomp",
fr: "Flobio",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Diving Search",
fr: "Croissance α",
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for a card. Shuffle your deck, then put that card on top of it.",
fr: "Lorsque vous attachez une carte Énergie de votre main à ce Pokémon (excepté à la suite d'une attaque, d'un talent ou d'une carte Dresseur), vous pouvez attacher 2 cartes Énergie au lieu d'une.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon",
},
effect: {
en: "This attack does 30 more damage for each Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card