1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

55 lines
1.4 KiB
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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Mantine",
th: "แมนไทน์"
},
illustrator: "satoma",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
id: "Saat Mantine berenang dan kecepatannya mulai meninggi, ia akan mulai melompat ke atas ombak dan meluncur begitu saja hingga sejauh 100 m di udara.",
th: "เมื่อว่ายน้ำจนความเร็วถึงที่ จะกระโดดบินเหนือคลื่นและร่อนได้ถึง 100 เมตร"
},
stage: "Basic",
attacks: [{
name: {
id: "Splash",
th: "สแปลช"
},
damage: 30,
cost: ["Water"]
}, {
name: {
id: "Water Dive",
th: "วอเตอร์ไดฟ์"
},
effect: {
id: "Serangan ini memberikan kerusakan sejumlah 50 kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]",
th: "ทำแดเมจ 50 กับโปเกมอนฝ่ายตรงข้าม 1 ตัว {โปเกมอนบนเบนช์จะไม่นำ จุดอ่อนและความต้านทานมาคิด}"
},
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card