1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

44
data-asia/S/S6a/036.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "大嘴娃"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "大嘴娃能用自己那由鋼角變化而成的巨大顎部將對手一口緊緊咬住。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬咬控制"
},
effect: {
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式所需的能量與【撤退】所需的能量各增加1個【無】能量。"
},
damage: 30,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card