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

68
data-asia/SV/SV2a/087.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ジュゴン",
'zh-tw': "白海獅",
th: "จูกอน",
id: "Dewgong"
},
illustrator: "aoki",
rarity: "Uncommon",
category: "Pokemon",
dexId: [87],
hp: 130,
types: ["Water"],
description: {
ja: "食事の 後は 砂浜で 日光浴を している。 体温を あげて 消化を よく するのだ。",
'zh-tw': "進食之後會在沙灘上 做日光浴,藉此提高體溫 來幫助消化。",
th: "หลังกินอาหาร ก็จะไปนอนอาบแดดที่หาดทราย เพื่อเพิ่มอุณหภูมิร่างกายให้ย่อยอาหารได้ดีขึ้น",
id: "Dewgong mandi sinar matahari di pantai setelah selesai makan. Peningkatan suhu tubuhnya membantu proses pencernaan."
},
stage: "Stage1",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "デュアルスプラッシュ",
'zh-tw': "二重飛濺",
th: "ดูอัลสแปลช",
id: "Dual Splash"
},
effect: {
ja: "相手のポケモン2匹に、それぞれ50ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "對手的2隻寶可夢各受到50點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนฝ่ายตรงข้าม 2 ตัว จะได้รับแดเมจตัวละ 50 {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
id: "Serangan ini memberikan kerusakan masing-masing sejumlah 50 kepada 2 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
}
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "オーロラビーム",
'zh-tw': "極光束",
th: "ออโรร่าบีม",
id: "Aurora Beam"
},
damage: 100
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card