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

60
data-asia/SV/SV6/007.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "オーロット",
'zh-tw': "朽木妖"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Oswaldo KATO",
dexId: [709],
hp: 120,
types: ["Grass"],
description: {
ja: "森に 棲む ポケモンには とても 優しい。 頭の しげみを 棲み処にされても 気にしない。",
'zh-tw': "對住在森林裡的寶可夢 非常親切,就算被住進了 頭上那叢葉子裡也毫不在意。"
},
stage: "Stage1",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
ja: "ギガドレイン",
'zh-tw': "終極吸取"
},
damage: 50,
effect: {
ja: "相手のバトルポケモンに与えたダメージぶん、このポケモンのHPを回復する。",
'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。"
}
}, {
cost: ["Grass", "Grass", "Colorless"],
name: {
ja: "フォレストダンプ",
'zh-tw': "森林拋擲"
},
damage: 130
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card