mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
55
data-asia/SV/SV3/012.ts
Normal file
55
data-asia/SV/SV3/012.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ヒトカゲ",
|
||||
'zh-tw': "小火龍",
|
||||
th: "ฮิโตคาเงะ"
|
||||
},
|
||||
|
||||
illustrator: "DOM",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [4],
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
ja: "生まれたときから しっぽに 炎が ともっている。 炎が 消えたとき その 命は 終わって しまう。",
|
||||
'zh-tw': "從出生時開始尾巴上就有火焰在燃燒。火焰熄滅時,生命也會結束。",
|
||||
th: "มีหางที่ติดไฟตั้งแต่เกิด หากไฟดับนั่นหมายถึงการจบชีวิต"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
ja: "ヒートタックル",
|
||||
'zh-tw': "熱力衝撞",
|
||||
th: "ฮีทแท็กเกิล"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも10ダメージ。",
|
||||
'zh-tw': "這隻寶可夢也受到10點傷害。",
|
||||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user