mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-02 04:41:57 +00:00
69
data/Sword & Shield/Fusion Strike/8.ts
Normal file
69
data/Sword & Shield/Fusion Strike/8.ts
Normal file
@@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Simisage",
|
||||
fr: "Feuiloutan",
|
||||
es: "Simisage",
|
||||
it: "Simisage",
|
||||
pt: "Simisage",
|
||||
de: "Vegichita"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pansage",
|
||||
fr: "Feuillajou",
|
||||
es: "Pansage",
|
||||
it: "Pansage",
|
||||
pt: "Pansage",
|
||||
de: "Vegimak"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Akira Komayama",
|
||||
|
||||
description: {
|
||||
en: "Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Return"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
en: "You may draw cards until you have 6 cards in your hand."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Whip Smash"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user