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

60
data-asia/SV/SV6/027.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "アズマオウ",
'zh-tw': "金魚王"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Gemi",
dexId: [119],
hp: 90,
types: ["Water"],
description: {
ja: "秋になると プロポーズのため 体に 脂が のってきて とても きれいな色に 変化する。",
'zh-tw': "到了秋天,體內的脂肪 會因為要求偶而增加, 體色也會變得非常漂亮。"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "つつきおとす",
'zh-tw': "啄落"
},
damage: 50,
effect: {
ja: "ダメージを与える前に、相手のバトルポケモンについている「ポケモンのどうぐ」をトラッシュする。",
'zh-tw': "在造成傷害前,將對手的戰鬥寶可夢身上附加的「寶可夢道具」卡丟棄。"
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "つのドリル",
'zh-tw': "角鑽"
},
damage: 90
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card