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

58
data-asia/S/S9a/022.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: "Shinji Kanda",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
'zh-tw': "會在沼澤底部建造居所。只要是活著的東西都會吃下肚, 是個不挑食的大胃王。",
ja: "沼の 底に すみかを つくる。 生き物なら 好き嫌いなく なんでも 食べてしまう 大食らい。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "泥巴射擊",
ja: "マッドショット"
},
damage: 80,
cost: ["Water", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "大鬧一番",
ja: "あばれる"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加60點傷害。若為反面則這隻寶可夢也受到60點傷害。",
ja: "コインを1回投げオモテなら、60ダメージ追加。ウラなら、このポケモンにも60ダメージ。"
},
damage: "120",
cost: ["Water", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Uncommon",
dexId: [340]
}
export default card