1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

65
data-asia/SV/SV6/002.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "キマワリ",
'zh-tw': "向日花怪"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Ounishi",
dexId: [192],
hp: 100,
types: ["Grass"],
description: {
ja: "浴びた 日差しを エネルギーに 変換するため 昼間は ずっと 太陽の方を 向いている。",
'zh-tw': "由於會將沐浴到的陽光 轉換成能量,因此白天 總是一直面向著太陽。"
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "ひざしがえし",
'zh-tw': "光返"
},
damage: "60×",
effect: {
ja: "相手のポケモン全員についているエネルギーの数×60ダメージ。",
'zh-tw': "造成對手的所有寶可夢身上附加的【火】能量的數量×60點傷害。"
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "メガドレイン",
'zh-tw': "超級吸取"
},
damage: 50,
effect: {
ja: "このポケモンのHPを「30」回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card