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

60 lines
1.9 KiB
TypeScript
Raw Permalink 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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "ยาโดคิง",
id: "Slowking"
},
illustrator: "Tetsu Kayama",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
th: "มีสติปัญญาและความสามารถในการหยั่งรู้ที่ยอดเยี่ยม ไม่ว่าเมื่อไหร่ก็จะทำตัวสบาย ๆ ไม่รีบไม่แตกตื่น",
id: "Slowking memiliki kecerdasan dan intuisi yang luar biasa. Di saat apa pun, Pokémon ini tidak panik, tenang, dan santai."
},
stage: "Stage1",
attacks: [{
name: {
th: "ท้าประลองไหวพริบ",
id: "Tantangan Inspirasi"
},
effect: {
th: "ทิ้งการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด ถ้าการ์ดนั้นเป็นการ์ดโปเกมอน (ยกเว้น [โปเกมอนที่มีกฎ]) เลือกท่าต่อสู้ที่โปเกมอนนั้นมี 1 ท่า ใช้เป็นท่าต่อสู้นี้ได้",
id: "Buang 1 kartu dari atas Deck sendiri ke Trash, jika kartu tersebut adalah Pokémon (selain Pokémon yang memiliki Peraturan), pilih 1 serangan yang dimiliki Pokémon tersebut, lalu gunakan sebagai serangan ini."
},
cost: ["Psychic", "Colorless"]
}, {
name: {
th: "ซูเปอร์โทรจิต",
id: "Psikokinesis Super"
},
damage: 120,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card