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

52
data-asia/S/S6a/001.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "凱羅斯"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "雖然很強壯,但弱點是怕冷。到了晚上就會把身體埋在樹葉堆裡睡覺。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "虎鉗特訓"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的「一擊」寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢的抵抗力。"
}
}],
attacks: [{
name: {
'zh-tw': "地球上投"
},
damage: 110,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card