1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

55
data-asia/SV/SV6a/005.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "狙射樹梟"
},
illustrator: "DOM",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
'zh-tw': "會像射箭那樣射出 藏在自己翅膀裡的箭羽。 只要瞄準目標就絕不會射偏。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "羽毛庫存"
},
effect: {
'zh-tw': "從牌庫抽卡直到自己的手牌滿7張為止。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "強力射擊"
},
effect: {
'zh-tw': "從自己的手牌將1張「基本【草】能量」卡丟棄。若無法丟棄則這個招式失敗。"
},
damage: 170,
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Uncommon"
}
export default card