1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

73 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Swampert",
fr: "Laggron",
es: "Swampert",
it: "Swampert",
pt: "Swampert",
de: "Sumpex"
},
rarity: "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