mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
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 |