1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

75 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [260],
set: Set,
name: {
en: "Swampert",
fr: "Laggron",
es: "Swampert",
it: "Swampert",
pt: "Swampert",
de: "Sumpex"
},
rarity: "Holo Rare",
category: "Pokemon",
hp: 170,
types: ["Water"],
evolveFrom: {
en: "Marshtomp",
fr: "Flobio",
es: "Marshtomp",
it: "Marshtomp",
pt: "Marshtomp",
de: "Moorabbel"
},
stage: "Stage2",
retreat: 3,
regulationMark: "E",
illustrator: "Masakazu Fukuda",
description: {
en: "It can swim while towing a large ship. It bashes down foes with a swing of its thick arms."
},
abilities: [{
type: "Ability",
name: {
en: "Muddy Maker"
},
effect: {
en: "Once during your turn, you may attach a Water Energy card or a Fighting Energy card from your hand to 1 of your Pokémon."
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
en: "Earthquake"
},
damage: 180,
effect: {
en: "This attack also does 20 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
}
}],
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card