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

53
data-asia/S/S12a/196.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 黏美龍",
ja: "ヒスイ ヌメルゴン"
},
illustrator: "You Iribi",
category: "Pokemon",
hp: 160,
types: ["Dragon"],
description: {
'zh-tw': "能自在操縱可剛可柔的金屬外殼。 性情執著且厭惡孤獨,一旦喜愛的 對象離開自己便會怒不可遏。",
ja: "金属の殻の 剛柔を 自在に 操る。 孤独を 厭い 執念深く 好いた者が 己から 離れると 怒り 荒ぶる。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "鋼之歸宿",
ja: "はがねのおやど"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上自己的所有身上附有【鋼】能量的【基礎】寶可夢不會受到對手的「寶可夢【V】」招式的傷害。",
ja: "このポケモンがいるかぎり、エネルギーがついている自分のたねポケモン全員は、相手の「ポケモンV」からワザのダメージを受けない。"
}
}],
attacks: [{
name: {
'zh-tw': "重磅衝擊",
ja: "ヘビーインパクト"
},
damage: 140,
cost: ["Water", "Metal", "Colorless"]
}],
retreat: 3,
regulationMark: "F",
dexId: [706]
}
export default card