mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 20:01:58 +00:00
69
data/Sword & Shield/Fusion Strike/63.ts
Normal file
69
data/Sword & Shield/Fusion Strike/63.ts
Normal file
@@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Marshtomp",
|
||||
fr: "Flobio",
|
||||
es: "Marshtomp",
|
||||
it: "Marshtomp",
|
||||
pt: "Marshtomp",
|
||||
de: "Moorabbel"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mudkip",
|
||||
fr: "Gobou",
|
||||
es: "Mudkip",
|
||||
it: "Mudkip",
|
||||
pt: "Mudkip",
|
||||
de: "Hydropi"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
description: {
|
||||
en: "Living on muddy ground that provides poor footing has made its legs sturdy."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mud-Slap"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Water", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Energy Loop"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
effect: {
|
||||
en: "Put an Energy attached to this Pokémon into your hand."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user