1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-03 04:19:54 +00:00

56 lines
1.5 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "เฮรัชเชอร์ex",
id: "Dondozo ex"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 260,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
th: "คลื่นลูกใหญ่เอาคืน",
id: "Serangan Balik Ombak Besar"
},
effect: {
th: "แดเมจจะเพิ่มตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10",
id: "Kerusakan yang diberikan bertambah sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
},
damage: "30+",
cost: ["Water", "Colorless"]
}, {
name: {
th: "ไดนามิกไดฟ์",
id: "Dynamic Dive"
},
effect: {
th: "หากต้องการ การโจมตีนี้จะเพิ่มแดเมจอีก 120 เมื่อทำเช่นนั้นแล้ว โปเกมอนนี้ ก็จะได้รับแดเมจ 50 ด้วย",
id: "Pemain dapat membuat kerusakan yang diberikan bertambah sejumlah 120. Jika dilakukan, Pokémon ini juga menerima kerusakan sejumlah 50."
},
damage: "120+",
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "I"
}
export default card