1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

58
data-asia/S/S9/008.ts Normal file
View File

@ -0,0 +1,58 @@
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