mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
897 B
TypeScript
59 lines
897 B
TypeScript
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 |