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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

75
data-asia/SV/SV2a/036.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ピクシー",
'zh-tw': "皮可西",
th: "ปิคซี",
id: "Clefable"
},
illustrator: "ryoma uratsuka",
rarity: "Uncommon",
category: "Pokemon",
dexId: [36],
hp: 100,
types: ["Psychic"],
description: {
ja: "1キロ先に 落ちた 針の 音も 聞こえるほど 耳が いいので ふだんは 静かな ところに いる。",
'zh-tw': "聽覺靈敏,連1公里以外針落地的聲音都聽得見, 因此平時會待在安靜的地方。",
th: "หูดีถึงขนาดได้ยินเสียงเข็มที่ตกอยู่ระยะ 1 กิโลเมตรข้างหน้า โดยปกติจึงอยู่ในสถานที่เงียบ ๆ",
id: "Telinga Clefable sangat tajam dan dapat mendengar suara jarum jatuh di tempat berjarak 1 km darinya, sehingga Pokémon ini biasanya berada di tempat yang tenang."
},
stage: "Stage1",
attacks: [{
cost: ["Psychic"],
name: {
ja: "このゆびとまれ",
'zh-tw': "看我嘛",
th: "ตามฉันมา",
id: "Ikuti Aku"
},
effect: {
ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。",
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้",
id: "Pilih 1 Pokémon Cadangan lawan, lalu tukar dengan Pokémon Bertarung."
}
}, {
cost: ["Psychic", "Psychic", "Psychic"],
name: {
ja: "アディショナルムーン",
'zh-tw': "追加月亮",
th: "แอดดิชันนัลมูน",
id: "Additional Moon"
},
damage: 50,
effect: {
ja: "このワザのダメージで、相手のポケモンがきぜつしたなら、サイドを1枚多くとる。",
'zh-tw': "若對手的寶可夢因這個招式的傷害而【昏厥】了則多獲得1張獎賞卡。",
th: "ถ้าโปเกมอนฝ่ายตรงข้าม[หมดสภาพ] ด้วยแดเมจของท่าต่อสู้นี้แล้ว หยิบการ์ดรางวัลเพิ่ม 1 ใบ",
id: "Jika Pokémon lawan KO karena kerusakan akibat serangan ini, ambil Kartu Point 1 lembar lebih banyak."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card