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

56
data-asia/S/SC1D/089.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "鯰魚王"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 140,
types: ["Fighting"],
description: {
'zh-tw': "會在沼澤底部建造居所。只要是活著的東西都會吃下肚,是個不挑食的大胃王。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "下潛"
},
effect: {
'zh-tw': "只要這隻寶可夢在備戰區,不會受到招式的傷害。"
}
}],
attacks: [{
name: {
'zh-tw': "地震"
},
effect: {
'zh-tw': "自己的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 140,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card