mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4K"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "マメバッタ",
|
||
'zh-tw': "豆蟋蟀",
|
||
th: "มาเมะบัตตะ"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [919],
|
||
hp: 50,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "第3の脚が 畳まれている。 ピンチになると 10メートル以上 ジャンプする 脚力を 持つ。",
|
||
'zh-tw': "總是將第3對腳折起來。擁有在遇到危機時能夠 跳超過10公尺的跳躍力。",
|
||
th: "พับขาที่ 3 เอาไว้ มีพลังขาที่สามารถกระโดดได้สูงกว่า 10 เมตรเมื่อตกอยู่ในสถานการณ์คับขัน"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "はねまわる",
|
||
'zh-tw': "活蹦亂跳",
|
||
th: "สะบัดตัว"
|
||
},
|
||
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |