1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

75
data-asia/SV/SV8a/017.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "チャデス",
id: "Poltchageist",
th: "ฉะเดธ",
'zh-tw': "斯魔茶",
'zh-cn': "斯魔茶"
},
illustrator: "MINAMINAMI Take",
rarity: "None",
category: "Pokemon",
dexId: [1012],
hp: 30,
types: ["Grass"],
description: {
ja: "ヤバチャの リージョンフォームに 見えるが まったく 関係のない ポケモンと 最近 判明した。",
id: "Poltchageist terlihat seperti varian daerah dari Sinistea, tetapi belakangan ini ditemukan bahwa mereka merupakan Pokémon yang tidak ada keterkaitannya sama sekali.",
th: "แม้จะดูเหมือนฟอร์มตามภูมิภาคของยาบาฉะ แต่ไม่นานมานี้มีการค้นพบแล้วว่า มันเป็นโปเกมอนที่ไม่เกี่ยวข้องกันโดยสิ้นเชิง",
'zh-tw': "雖然這種寶可夢看起來像是 來悲茶的地區形態,但最近 被發現其實兩者毫無關係。",
'zh-cn': "雖然這種寶可夢看起來像是 來悲茶的地區形態,但最近 被發現其實兩者毫無關係。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "くらがくれ",
id: "Gudang Persembunyian",
th: "ซ่อนในคลัง",
'zh-tw': "藏隱",
'zh-cn': "藏隱"
},
effect: {
ja: "このポケモンは、ベンチにいるかぎり、相手のポケモンからワザのダメージや効果を受けない。",
id: "Selama Pokémon ini ada di Cadangan, Pokémon ini tidak menerima kerusakan dan efek akibat serangan dari Pokémon lawan.",
th: "โปเกมอนนี้ ตราบใดที่ยังอยู่บนเบนช์ จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม",
'zh-tw': "只要這隻寶可夢在備戰區,不會受到對手的寶可夢招式的傷害與效果的影響。",
'zh-cn': "只要這隻寶可夢在備戰區,不會受到對手的寶可夢招式的傷害與效果的影響。"
}
}],
attacks: [{
cost: ["Grass"],
name: {
ja: "ひっかける",
id: "Mengait",
th: "จับแขวน",
'zh-tw': "鉤住",
'zh-cn': "鉤住"
},
damage: 10
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card