1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/S12a/174.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "音箱蟀",
ja: "コロトック"
},
illustrator: "Nurikabe",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "用短刀般的手臂發出聲音。所奏出 的旋律隨個體不同而異,從中尋找 自己喜愛的旋律也是一大樂事。",
ja: "感情を メロディで 表す。 メロディの 法則性を 学者たちが 研究している。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "充溢旋律",
ja: "みなぎるせんりつ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上自己的場上的所有【草】寶可夢「音箱蟀」除外的最大HP各增加「40」。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。",
ja: "このポケモンがいるかぎり、自分の場のポケモン「コロトック」をのぞく全員の最大HPは、それぞれ「40」大きくなる。この効果は、この特性を持つポケモンが何匹いても、重ならない。"
}
}],
attacks: [{
name: {
'zh-tw': "劈開",
ja: "きりさく"
},
damage: 50,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [402]
}
export default card