mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV2a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "トサキント",
|
||
'zh-tw': "角金魚",
|
||
th: "โทซาคินโตะ",
|
||
id: "Goldeen"
|
||
},
|
||
|
||
illustrator: "SIE NANAHARA",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [118],
|
||
hp: 70,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "背びれ 胸びれが 筋肉のように 発達しており 水中を 5ノットの 速さで 泳ぐ。",
|
||
'zh-tw': "背鰭和尾鰭像肌肉那樣發達。能夠以 5節的速度在水中游泳。",
|
||
th: "ครีบหลังและครีบอกเจริญเติบโตราวกับกล้ามเนื้อ ว่ายน้ำด้วยความเร็ว 5 นอต",
|
||
id: "Sirip punggung dan sirip dada Goldeen tumbuh bak otot, sehingga dia bisa berenang dengan kecepatan 5 knot di dalam air."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Water"],
|
||
|
||
name: {
|
||
ja: "さんれんづき",
|
||
'zh-tw': "三連撞",
|
||
th: "พุ่งชนสามครั้ง",
|
||
id: "Tusukan Tiga Kali"
|
||
},
|
||
|
||
damage: "10×",
|
||
|
||
effect: {
|
||
ja: "コインを3回投げ、オモテの数×10ダメージ。",
|
||
'zh-tw': "擲3次硬幣,造成正面出現的次數×10點傷害。",
|
||
th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10",
|
||
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan."
|
||
}
|
||
}, {
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "うちみず",
|
||
'zh-tw': "潑灑清水",
|
||
th: "ราดน้ำ",
|
||
id: "Percikan Air"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |