mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV8s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
id: "Tapu Lele",
|
||
th: "คาปู เทเทฟู"
|
||
},
|
||
|
||
illustrator: "Natsumi Yoshida",
|
||
category: "Pokemon",
|
||
hp: 110,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
id: "Ia terbang berkeliling secara melambai dan menyebarkan debu sisik yang berkilau ajaib. Kabarnya, siapa pun yang menyentuh debu sisik tersebut akan segera semangat kembali.",
|
||
th: "บินพลิ้วไหวไปมาโปรยผงละอองที่ส่องประกายน่าพิศวง ว่ากันว่าผู้ที่ สัมผัสมันจะกลับมามีชีวิตชีวาในทันที"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
id: "Mengecoh",
|
||
th: "ทำให้สับสน"
|
||
},
|
||
|
||
effect: {
|
||
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.",
|
||
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
id: "Mental Crush",
|
||
th: "เมนทัลแครช"
|
||
},
|
||
|
||
effect: {
|
||
id: "Jika Pokémon Bertarung lawan mengalami kondisi Pusing, kerusakan yang diberikan bertambah sejumlah 90.",
|
||
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน] การโจมตีนี้จะเพิ่ม แดเมจอีก 90"
|
||
},
|
||
|
||
damage: "90+",
|
||
cost: ["Psychic", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |