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

69 lines
2.1 KiB
TypeScript
Raw 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ストリンダー",
'zh-tw': "顫弦蠑螈",
th: "สตรินเดอร์"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
dexId: [849],
hp: 140,
types: ["Lightning"],
description: {
ja: "どんな 相手にも 動じず 気だるげに ケンカを売る スタイルに 憧れる 若者も 多い。",
'zh-tw': "面對任何對手都能鎮定自若,一臉懶樣地挑釁對手的風格,受到了不少年輕人的憧憬。",
th: "มีวัยรุ่นจำนวนมากที่หลงใหลสไตล์การหาเรื่องอีกฝ่ายแบบเนือย ๆ โดยไม่หวั่นแม้ศัตรูจะเป็นแบบใดก็ตามของมัน"
},
stage: "Stage1",
attacks: [{
cost: ["Lightning"],
name: {
ja: "にらみつける",
'zh-tw': "瞪眼",
th: "เหลือบมอง"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "ミックスラウド",
'zh-tw': "混和高聲",
th: "มิกซ์ลาวด์"
},
damage: "50+",
effect: {
ja: "自分のベンチポケモンのタイプの数×30ダメージ追加。",
'zh-tw': "增加自己的備戰寶可夢的屬性種類的數量×30點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนประเภทของโปเกมอนบนเบนช์ฝ่ายเรา x30"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card