1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 00:11:58 +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/043.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': "光輝摔角鷹人",
ja: "かがやくルチャブル"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "利用發揮輕盈體型優勢的戰法,在消耗了對手的體力之後 使用華麗的絕招分出勝負。",
ja: "身軽さを 活かした 戦法で 相手の 体力を 奪ってから 華麗な 大技を 決める。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "大型競賽",
ja: "ビッグマッチ"
},
effect: {
'zh-tw': "只要這隻寶可夢在備戰區自己的寶可夢使用的招式對對手的戰鬥場的「寶可夢【VMAX】」造成的傷害「+30」點。",
ja: "このポケモンがベンチにいるかぎり、自分のポケモンが使うワザの、相手のバトル場の「ポケモンVMAX」へのダメージは「+30」される。"
}
}],
attacks: [{
name: {
'zh-tw': "迴轉踢",
ja: "かいてんげり"
},
damage: 50,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [701]
}
export default card