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

51 lines
826 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Sharpedo"
},
illustrator: "Tonji Matsuno",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
id: "Sharpedo dikenal sebagai Geng Laut dan menyerang semua kapal yang masuk ke perairan yang menjadi habitatnya tanpa kecuali."
},
stage: "Stage1",
attacks: [{
name: {
id: "Aqua Impact"
},
effect: {
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk Mundur."
},
damage: "10+",
cost: ["Water"]
}, {
name: {
id: "Jet Head"
},
damage: 60,
cost: ["Water", "Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card