mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
59
data/Sword & Shield/Fusion Strike/27.ts
Normal file
59
data/Sword & Shield/Fusion Strike/27.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Zarude",
|
||||
fr: "Zarude",
|
||||
es: "Zarude",
|
||||
it: "Zarude",
|
||||
pt: "Zarude",
|
||||
de: "Zarude"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "Anesaki Dynamic",
|
||||
|
||||
description: {
|
||||
en: "Once the vines on Zarude's body tear off, they become nutrients in the soil. This helps the plants of the forest grow."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Wild Whip"
|
||||
},
|
||||
|
||||
damage: "40+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user