1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

77
data-asia/SV/SV2a/141.ts Normal file
View File

@ -0,0 +1,77 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "カブトプス",
'zh-tw': "鐮刀盔",
th: "คาบูท็อปส์",
id: "Kabutops"
},
illustrator: "Souichirou Gunjima",
rarity: "Rare",
category: "Pokemon",
dexId: [141],
hp: 160,
types: ["Fighting"],
description: {
ja: "絶滅の 理由は 不明。 暖かい 海に 暮らしていた 凶暴な 古代のポケモン。",
'zh-tw': "沒有人知道牠為何會滅絕。過去曾棲息在溫暖的海域, 是性情凶暴的古代寶可夢。",
th: "สาเหตุที่สูญพันธุ์ไปนั้นไม่รู้แน่ชัด เป็นโปเกมอนดึกดำบรรพ์จอมโหดที่อาศัยอยู่ใต้ทะเลอุ่น",
id: "Alasan Kabutops punah tidak jelas. Pokémon purba brutal yang hidup di laut hangat."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "たいこのことわり",
'zh-tw': "遠古真理",
th: "หลักการดึกดำบรรพ์",
id: "Dogma Purba"
},
effect: {
ja: "このポケモンがいるかぎり、相手のバトルポケモンの弱点は「×4」としてダメージ計算をする。",
'zh-tw': "只要這隻寶可夢在場上對手的戰鬥寶可夢的弱點以「×4」計算傷害。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ จุดอ่อนของโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะคำนวณแดเมจด้วยการ [x4]",
id: "Selama Pokémon ini ada di Arena, perhitungan kerusakan dari tipe yang menjadi Kelemahan Pokémon Bertarung lawan adalah 4 kali lipat."
}
}],
attacks: [{
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "ドレインスラッシュ",
'zh-tw': "吸取揮砍",
th: "เดรนสแลช",
id: "Drain Slash"
},
damage: 100,
effect: {
ja: "このポケモンのHPを「30」回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30]",
id: "Pulihkan HP Pokémon ini sejumlah 30."
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card