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

52 lines
1.3 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "サナギラス",
'zh-tw': "沙基拉斯",
th: "ซานากิราส",
id: "Pupitar"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
dexId: [247],
hp: 90,
types: ["Fighting"],
description: {
ja: "体内で 圧縮させた ガスを 勢いよく 噴出させ 飛んで 暴れまわる サナギだ。",
'zh-tw': "會以強勁的力道噴出在體內壓縮好的氣體,好讓自己 能飛在空中大搞破壞的蛹。",
th: "เป็นดักแด้ที่บินและอาละวาดไปมาโดยการพ่นแก๊สที่อัดแน่นอยู่ภายในร่างกายออกมาอย่างรุนแรง",
id: "Pupitar adalah pupa yang mengamuk dan terbang dengan menyemburkan gas yang terkompres di dalam tubuhnya."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "とびだしヘッド",
'zh-tw': "魯莽頭擊",
th: "กระโดดโหม่ง",
id: "Sundulan Meloncat"
},
damage: 50
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card