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

48 lines
745 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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "沼王V"
},
illustrator: "PLANETA Igarashi",
category: "Pokemon",
hp: 220,
types: ["Water"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "純樸"
},
effect: {
'zh-tw': "這隻寶可夢不會受到對手的寶可夢使用招式的效果的影響。"
}
}, {
name: {
'zh-tw': "泥水頭擊"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有【鬥】能量則增加120點傷害。"
},
damage: "100+",
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card