1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

49
data-asia/SV/SV6/001.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from '../../../interfaces'
import set from '../SV6'
const card: Card = {
name: {
ja: "ヒマナッツ",
'zh-tw': "向日種子"
},
category: 'Pokemon',
rarity: 'Common',
set: set,
illustrator: "Naoyo Kimura",
dexId: [191],
hp: 40,
types: ["Grass"],
description: {
ja: "とても ひ弱。 襲われても 葉っぱを 必死に 振りまわして 追い払うのが やっとだ。",
'zh-tw': "十分弱小。即使遭到攻擊, 也只能勉勉強強地靠著 拼命揮舞葉子來趕走敵人。"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "タネマシンガン",
'zh-tw': "種子機關槍"
},
damage: "10×",
effect: {
ja: "コインを4回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲4次硬幣造成正面出現的次數×10點傷害。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card