mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Kyurem Hitam ex",
|
||
th: "แบล็กคิวเรมex"
|
||
},
|
||
|
||
illustrator: "kawayoo",
|
||
category: "Pokemon",
|
||
hp: 230,
|
||
types: ["Water"],
|
||
stage: "Basic",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Ice Age",
|
||
th: "ไอซ์เอจ"
|
||
},
|
||
|
||
effect: {
|
||
id: "Jika Pokémon Bertarung lawan adalah Pokémon {Naga}, ubah kondisi Pokémon tersebut menjadi Lumpuh.",
|
||
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอน[มังกร] จะทำให้โปเกมอนนั้น เป็นสภาวะ[ชา]"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Black Frost",
|
||
th: "แบล็กฟรอสต์"
|
||
},
|
||
|
||
effect: {
|
||
id: "Pokémon ini juga menerima kerusakan sejumlah 30.",
|
||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย"
|
||
},
|
||
|
||
damage: 250,
|
||
cost: ["Water", "Water", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |