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

56 lines
906 B
TypeScript
Raw Permalink 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "尖牙籠"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "會纏繞在生長於潮濕地帶的樹木上,以散發甜甜香氣的唾液吸引獵物靠近,再一口吃掉。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "報恩"
},
effect: {
'zh-tw': "若希望從牌庫抽卡直到自己的手牌滿5張為止。"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "終極吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。"
},
damage: 40,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card