mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV2a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ナゾノクサ",
|
||
'zh-tw': "走路草",
|
||
th: "นาโซโนะคุสะ",
|
||
id: "Oddish"
|
||
},
|
||
|
||
illustrator: "Sekio",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [43],
|
||
hp: 60,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
ja: "昼間は 太陽を 避けるため 冷たい 地面に もぐっている。 月の光を 浴びて 育つ。",
|
||
'zh-tw': "白天為了躲避太陽,會鑽進涼爽的地下。 藉由沐浴月光來成長。",
|
||
th: "ช่วงกลางวันจะมุดอยู่ใต้ดินเย็น ๆ เพื่อหลบดวงอาทิตย์ เติบโตด้วยการอาบแสงจันทร์",
|
||
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': "飛葉快刀",
|
||
th: "คัตเตอร์ใบไม้",
|
||
id: "Daun Pemotong"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |