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

51 lines
819 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "飄香豚"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "以自己細緻透亮的肌膚 為傲。會從尾巴的前端 釋放出凝縮的香氣。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "足踩踏"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。"
},
damage: 130,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card