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

57
data-asia/S/S12/104.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 風速狗V",
ja: "ヒスイ ウインディV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 230,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "震怒奮鬥",
ja: "ししふんじん"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。選擇1個自己的場上寶可夢身上附加的【鬥】能量改附於這隻寶可夢身上。",
ja: "自分の番に何回でも使える。自分の場のポケモンについているエネルギーを1個選び、このポケモンにつけ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "岩石子彈",
ja: "ロックバレット"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【鬥】能量的數量×30點傷害。",
ja: "このポケモンについているエネルギーの数×30ダメージ追加。"
},
damage: "90",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card