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

61 lines
1.6 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: "Zarude",
th: "ซารู้ด"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
id: "Zarude hidup dalam hutan belantara secara berkelompok. Sangat agresif sehingga ditakuti oleh Pokémon lainnya yang tinggal di hutan.",
th: "สร้างฝูงอาศัยอยู่ในป่าทึบ มีนิสัยก้าวร้าวมากและเป็นที่หวาดกลัวของ เหล่าโปเกมอนที่อาศัยอยู่ในป่า"
},
stage: "Basic",
attacks: [{
name: {
id: "Leaf Drain",
th: "ลีฟเดรน"
},
effect: {
id: "Pulihkan HP Pokémon ini sejumlah 20.",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
id: "Jungle Whip",
th: "จังเกิลวิป"
},
effect: {
id: "Pemain dapat mengembalikan semua Energi yang dikenakan pada Pokémon ini ke Kartu Pegangan, kerusakan yang diberikan bertambah sejumlah 80.",
th: "หากต้องการ นำพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมดกลับขึ้นมือ การโจมตีนี้จะ เพิ่มแดเมจอีก 80"
},
damage: "80+",
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card