1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

51 lines
779 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙鈴仙人掌"
},
illustrator: "313",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "一年散播一次種子。花的種子營養十足,是沙漠中貴重的食糧。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "啄"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
'zh-tw': "丟丟搖擺"
},
effect: {
'zh-tw': "從自己的手牌將任意數量的「寶可夢道具」卡丟棄造成其張數×50點傷害。"
},
damage: "50×",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card