1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

52
data-asia/SV/SV2D/037.ts Normal file
View File

@ -0,0 +1,52 @@
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