mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
57
data/Sword & Shield/Fusion Strike/209.ts
Normal file
57
data/Sword & Shield/Fusion Strike/209.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Smeargle",
|
||||
fr: "Queulorior",
|
||||
es: "Smeargle",
|
||||
it: "Smeargle",
|
||||
pt: "Smeargle",
|
||||
de: "Farbeagle"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
|
||||
description: {
|
||||
en: "It draws symbols with the fluid that oozes from the tip of its tail. Depending on the symbol, Smeargle fanatics will pay big money for them."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Sketching Trash"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put up to 2 Fusion Strike Trainer cards from your discard pile into your hand."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Tail Whap"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user