1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

48
data-asia/SV/SV4a/191.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ナゾノクサ",
'zh-tw': "走路草",
id: "Oddish"
},
illustrator: "otumami",
category: "Pokemon",
dexId: [43],
hp: 60,
types: ["Grass"],
description: {
ja: "昼間は 太陽を 避けるため 冷たい 地面に もぐっている。 月の光を 浴びて 育つ。",
'zh-tw': "白天為了躲避太陽,會鑽進涼爽的地下。 藉由沐浴月光來成長。",
id: "Pada siang hari, Oddish membenamkan diri ke dalam tanah yang dingin untuk menghindari matahari. Pokémon ini tumbuh dengan bermandikan cahaya bulan."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "はっぱカッター",
'zh-tw': "飛葉快刀",
id: "Daun Pemotong"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card