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

55
data-asia/S/S11/007.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "狡猾天狗"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 160,
types: ["Grass"],
description: {
'zh-tw': "過去被視為森林之神而受到畏懼的寶可夢。有著讀取對手想法並 搶先一步行動的能力。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "圓扇龍捲風"
},
effect: {
'zh-tw': "若希望,將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
},
damage: 50,
cost: ["Grass"]
}, {
name: {
'zh-tw': "毀壞陣風"
},
effect: {
'zh-tw': "將這隻寶可夢與附加的卡,全部放置於放逐區。"
},
damage: 210,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card