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:
65
data-asia/SV/SV4M/007.ts
Normal file
65
data-asia/SV/SV4M/007.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4M"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ノノクラゲ",
|
||||
'zh-tw': "原野水母",
|
||||
th: "โนโนะคุราเกะ"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [948],
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
ja: "メノクラゲに 似ているが まったく 別の 種類。 脚は 細いが 走りだせば 時速50キロになる。",
|
||||
'zh-tw': "看起來像瑪瑙水母,其實是截然不同的種類。雖然腳很細,但跑起來能達到時速50公里。",
|
||||
th: "มีความคล้ายคลึงกับเมโนคุราเกะแต่ความจริงแล้วเป็นสายพันธุ์ที่ต่างกันโดยสิ้นเชิง แม้จะมีขาเรียวเล็กแต่เมื่อออกวิ่งจะมีความเร็วอยู่ที่ 50 กิโลเมตรต่อชั่วโมง"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "キック",
|
||||
'zh-tw': "踢",
|
||||
th: "เตะ"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Grass", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "すいとる",
|
||||
'zh-tw': "吸取",
|
||||
th: "ดูดซับ"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンのHPを「20」回復する。",
|
||||
'zh-tw': "將這隻寶可夢恢復「20」HP。",
|
||||
th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user