mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV3"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "グルトン",
|
||
'zh-tw': "愛吃豚",
|
||
th: "กูร์ตง"
|
||
},
|
||
|
||
illustrator: "HYOGONOSUKE",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [915],
|
||
hp: 60,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
ja: "一日中 エサを 探す。 優れた 嗅覚を 持つが エサ探し 以外に 使わない。",
|
||
'zh-tw': "一整天都在覓食。雖然擁有優秀的嗅覺, 但卻只被用在覓食上。",
|
||
th: "หาอาหารตลอดวัน มีประสาทการรับกลิ่นที่ยอดเยี่ยมแต่จะไม่ใช้ไปกับเรื่องที่ไม่เกี่ยวข้องกับการหาอาหาร"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
ja: "たいあたり",
|
||
'zh-tw': "撞擊",
|
||
th: "พุ่งเข้าชน"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |