1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

62 lines
1.8 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: "อิวาพาเลซ",
id: "Crustle"
},
illustrator: "Po-Suzuki",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
th: "เล็บอันหนานั้นเป็นอาวุธที่แข็งแกร่งที่สุด แข็งถึงขนาดทำให้กระดอง หุ้มหลังของโดไซดอนเป็นรอยร้าวได้",
id: "Capit tebal Crustle adalah senjata terkuatnya. Sedemikian kerasnya sehingga dapat meretakkan pelindung Rhyperior."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
th: "บ้านก้อนหินลึกลับ",
id: "Penginapan Batu Mistis"
},
effect: {
th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จาก [โปเกมอน【ex】] ฝ่ายตรงข้าม",
id: "Pokémon ini tidak menerima kerusakan akibat serangan dari Pokémon {ex} lawan."
}
}],
attacks: [{
name: {
th: "เกรทซิสเซอร์",
id: "Great Scissor"
},
effect: {
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ ฝ่ายตรงข้ามมาคิด",
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh efek yang sedang dialami Pokémon Bertarung lawan."
},
damage: 120,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card