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

54
data-asia/S/S6K/048.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S6K"
const card: Card = {
set: Set,
name: {
'zh-tw': "狡猾天狗"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 150,
types: ["Darkness"],
description: {
'zh-tw': "在森林深處靜靜地生活。據說當牠搧動大大的團扇,就會刮起冬日寒風。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "天狗再見"
},
effect: {
'zh-tw': "將身上放置有傷害指示物的對手的戰鬥寶可夢與附加的卡,全部放回對手的手牌。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "寒冬旋風"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 130,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card