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

65
data-asia/SV/SV6/047.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ケーシィ",
'zh-tw': "凱西"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Kariya",
dexId: [63],
hp: 40,
types: ["Psychic"],
description: {
ja: "寝ながら 超能力を 操る。 夢の 内容が 使う 力に 影響する。",
'zh-tw': "會一邊睡覺一邊操控超能力。 夢的內容會影響牠使用的能力。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "テレポーター",
'zh-tw': "瞬間移動者"
},
effect: {
ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。",
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。將這隻寶可夢與附加的卡全部放回自己的牌庫並重洗。"
}
}],
attacks: [{
cost: ["Psychic"],
name: {
ja: "ビーム",
'zh-tw': "光束"
},
damage: 10
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card