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

42
data-asia/S/SI/314.ts Normal file
View File

@ -0,0 +1,42 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "七夕青鳥"
},
illustrator: "sui",
category: "Pokemon",
hp: 90,
types: ["Dragon"],
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "勸誘曲調"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的牌庫選擇1張支援者卡給對手看過。重洗剩餘牌庫將所選的卡放回牌庫上方。"
}
}],
attacks: [{
name: {
'zh-tw': "滑翔"
},
damage: 60,
cost: ["Water", "Metal"]
}],
retreat: 0,
regulationMark: "E"
}
export default card