mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
49
data-asia/SV/SV4K/004.ts
Normal file
49
data-asia/SV/SV4K/004.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4K"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "イシズマイ",
|
||||
'zh-tw': "石居蟹",
|
||||
th: "อิชิซึไม"
|
||||
},
|
||||
|
||||
illustrator: "Scav",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [557],
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
ja: "家に ちょうどいい 小石が 見つからないと カバルドンの 穴に 棲んでしまうことも。",
|
||||
'zh-tw': "如果找不到大小合適的石頭來當成自己的家, 牠也會住到河馬獸的洞裡。",
|
||||
th: "ถ้าหากหาหินเล็กขนาดพอเหมาะที่จะทำเป็นที่อยู่ไม่ได้ บางทีก็จะเข้าไปอาศัยอยู่ในโพรงของคาบัลดอน"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "たたく",
|
||||
'zh-tw': "敲擊",
|
||||
th: "ตี"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user