1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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

59
data-asia/SV/SV3a/024.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ゴマゾウ",
'zh-tw': "小小象",
th: "โกมาโซ"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
dexId: [231],
hp: 80,
types: ["Fighting"],
description: {
ja: "川辺に 巣穴を 作り 暮らす。 泥遊びをしたあとは 体を 洗わないと 落ち着かないのだ。",
'zh-tw': "會在河邊做出巢穴棲息。玩完泥巴後如果不把身體 洗乾淨,就會渾身不自在。",
th: "ขุดหลุมเป็นรังอยู่ใกล้แม่น้ำ จะรู้สึกกระสับกระส่ายถ้าไม่ได้ล้างตัวหลังเล่นโคลน"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かいりき",
'zh-tw': "怪力",
th: "พลังมหากาฬ"
},
damage: 30
}, {
cost: ["Fighting", "Fighting", "Colorless"],
name: {
ja: "ころがりタックル",
'zh-tw': "滾動衝撞",
th: "กลิ้งโจมตี"
},
damage: 60
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card