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/S9a/010.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "畢力吉翁V",
ja: "ビリジオンV"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 200,
types: ["Grass"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "春草之風",
ja: "わかくさのかぜ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【草】能量的寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。",
ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員は、特殊状態にならず、受けている特殊状態は、すべて回復する。"
}
}],
attacks: [{
name: {
'zh-tw': "綠寶石利刃",
ja: "エメラルドブレード"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
ja: "次の自分の番、このポケモンはワザが使えない。"
},
damage: 200,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Double rare"
}
export default card