1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

53 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "單卵細胞球",
th: "ยูนิรัน",
ja: "ユニラン"
},
illustrator: "Ligton",
category: "Pokemon",
hp: 40,
types: ["Psychic"],
description: {
'zh-tw': "透過心靈感應來與夥伴交流。如果受到了強烈的衝擊, 包裹著身體的液體就會漏出來。",
th: "สามารถส่งความคิดหากันด้วยกระแสจิตได้ เมื่อได้รับการกระทบอย่างรุนแรงของเหลวที่ห่อหุ้มร่างจะรั่วไหลออกมา",
ja: "テレパシーで 意思を 送りあう。 強いショックを 受けると 体を 包む 液体が 漏れ出す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "衝撞",
th: "กระแทก",
ja: "ぶつかる"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [577]
}
export default card