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

50
data-asia/S/S9/028.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "泳圈鼬",
ja: "ブイゼル"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "使脖子上的浮囊膨脹,從水面露出臉, 觀察著周圍的樣子。",
ja: "首の 浮き袋を ふくらませ 水面から 顔を だして 辺りの 様子を うかがっている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "高速移動",
ja: "こうそくいどう"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [418]
}
export default card