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

59
data-asia/SV/SVD/079.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "下石鳥"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "會把東西裝在用胸部的絨羽和脫落的羽毛做成的袋子裡, 然後從高處往下丟來玩耍。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "親送口袋"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "暗黑刀鋒"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 120,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card