1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

58 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "シャリタツ",
'zh-tw': "米立龍",
th: "ชาริทัตสึ"
},
illustrator: "Shibuzoh.",
rarity: "Uncommon",
category: "Pokemon",
dexId: [978],
hp: 70,
types: ["Dragon"],
description: {
ja: "非常に 悪賢い ポケモン。 弱ったふりで 獲物を おびき寄せ 仲間の ポケモンに 襲わせる。",
'zh-tw': "極為奸詐狡猾的寶可夢。會假裝虛弱來吸引獵物接近,接著讓同夥的寶可夢發動攻擊。",
th: "เป็นโปเกมอนที่เจ้าเล่ห์เป็นอย่างมาก แสร้งทำเป็นอ่อนแอเพื่อดึงดูดให้เหยื่อเข้ามาใกล้แล้วให้โปเกมอนที่เป็นพวกพ้องโจมตีใส่"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "みずでっぽう",
'zh-tw': "水槍",
th: "ปืนฉีดน้ำ"
},
damage: 20
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "せいぞんせんりゃく",
'zh-tw': "生存戰略",
th: "กลยุทธ์เพื่อความอยู่รอด"
},
effect: {
ja: "自分の山札から好きなカードを2枚まで選び、手札に加える。そして山札を切る。のぞむなら、このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。若希望將這隻寶可夢與備戰寶可夢互換。",
th: "เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด หากต้องการ สลับโปเกมอนนี้กับโปเกมอนบนเบนช์"
}
}],
retreat: 1,
regulationMark: "G"
}
export default card