mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
73
data/Sword & Shield/Fusion Strike/64.ts
Normal file
73
data/Sword & Shield/Fusion Strike/64.ts
Normal file
@ -0,0 +1,73 @@
|
||||
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
|
Reference in New Issue
Block a user