1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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/SCA/071.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "三首惡龍"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 160,
types: ["Darkness"],
description: {
'zh-tw': "會咬住一切會動的物體。有不少傳說裡都提到了三首惡龍毀滅村莊的故事。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "黑暗驟雨"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。從自己的手牌選擇1張【惡】能量卡附於自己的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "漆黑之牙"
},
damage: 130,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card