1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

63
data-asia/S/S12a/186.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒂安希",
ja: "ディアンシー"
},
illustrator: "Haruko Ichikawa",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "在雙手的間隙中壓縮空氣中的碳元素,轉瞬間變出許多鑽石。",
ja: "両手の すきまで 空気中の 炭素を 圧縮して たくさんの ダイヤを 一瞬で 生み出す。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "公主帷幔",
ja: "プリンセスカーテン"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手從手牌使出支援者時,自己的備戰區的所有【基礎】寶可夢不會受到其效果的影響。",
ja: "このポケモンがバトル場にいるかぎり、自分のベンチのたねポケモン全員は、相手が手札からサポートを出して使ったとき、その効果を受けない。"
}
}],
attacks: [{
name: {
'zh-tw': "扣殺抽出",
ja: "スパイクドロー"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。",
ja: "自分の山札を2枚引く。"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [719]
}
export default card