1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

45 lines
749 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "騎拉帝納V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "深淵探求"
},
effect: {
'zh-tw': "查看自己的牌庫上方4張卡從其中選擇2張卡加入手牌。將剩餘卡放置於放逐區。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "撕裂"
},
effect: {
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。"
},
damage: 160,
cost: ["Grass", "Psychic", "Colorless"]
}],
retreat: 2,
regulationMark: "F"
}
export default card