1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

feat: Add SV8s (#675)

This commit is contained in:
2025-02-28 08:44:50 +01:00
committed by GitHub
parent e4099defdb
commit e8e9c23e14
245 changed files with 11903 additions and 0 deletions

61
data-asia/SV/SV8s/089.ts Normal file
View File

@ -0,0 +1,61 @@
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