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

51 lines
722 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "利歐路"
},
illustrator: "chibi",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "夥伴們之間會透過發出波導來與彼此溝通。 跑步可以跑上一整晚。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "出拳"
},
damage: 10,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "突擊"
},
effect: {
'zh-tw': "這隻寶可夢也受到20點傷害。"
},
damage: 50,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card