mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
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 |