1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

58 lines
1.1 KiB
TypeScript
Raw 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "土台龜",
ja: "ドダイトス"
},
illustrator: "Oswaldo KATO",
category: "Pokemon",
hp: 190,
types: ["Grass"],
description: {
'zh-tw': "有時候小型的寶可夢們會聚集起來,在一動不動的 土台龜背上築起巢穴。",
ja: "小さな ポケモンたちが 集まり 動かない ドダイトスの 背中で 巣作りを はじめることがある。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "進化壓制",
ja: "エボルプレス"
},
effect: {
'zh-tw': "造成自己的場上進化寶可夢的數量×50點傷害。",
ja: "自分の場の進化ポケモンの数×50ダメージ。"
},
damage: "50×",
cost: ["Grass", "Colorless"]
}, {
name: {
'zh-tw': "頭突",
ja: "ぶちかます"
},
damage: 160,
cost: ["Grass", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "F",
rarity: "Rare",
dexId: [389]
}
export default card