1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

59 lines
1.3 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "シママ",
th: "ชิมามา"
},
illustrator: "matazo",
category: "Pokemon",
dexId: [522],
hp: 60,
types: ["Lightning"],
description: {
ja: "放電すると たてがみが 光る。 たてがみが 輝く 回数や リズムで 仲間と 会話している。",
th: "เมื่อปล่อยไฟฟ้าออกมาแผงขนบนหัวจะเปล่งแสง พูดคุยสื่อสารกับพวกพ้องด้วยจำนวนครั้งหรือจังหวะการเปล่งแสงของแผงขนบนหัว"
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "うしろげり",
th: "เตะกลับหลัง"
},
damage: 10
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "ワイルドボルト",
th: "ไวลด์โวลต์"
},
damage: 50,
effect: {
ja: "このポケモンにも20ダメージ。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card