1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

51
data-asia/SV/SV6/006.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ボクレー",
'zh-tw': "小木靈"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Katsunori Sato",
dexId: [708],
hp: 70,
types: ["Grass"],
description: {
ja: "死んだ 子供の 魂が 切り株に 宿った ポケモン。 森を さまよい 仲間を 探す。",
'zh-tw': "死去的孩子的靈魂附在 樹樁上,變成了寶可夢。 會徘徊在森林裡尋找夥伴。"
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
ja: "やどりぎのタネ",
'zh-tw': "寄生種子"
},
damage: 20,
effect: {
ja: "このポケモンのHPを「20」回復する。",
'zh-tw': "將這隻寶可夢恢復「20」HP。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card