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

63
data-asia/SV/SV3/001.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ナゾノクサ",
'zh-tw': "走路草",
th: "นาโซโนะคุสะ"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
dexId: [43],
hp: 50,
types: ["Grass"],
description: {
ja: "昼間は 太陽を 避けるため 冷たい 地面に もぐっている。 月の光を 浴びて 育つ。",
'zh-tw': "白天為了躲避太陽,會鑽進涼爽的地下。藉由沐浴月光來成長。",
th: "ช่วงกลางวันจะมุดอยู่ใต้ดินเย็น ๆ เพื่อหลบดวงอาทิตย์ เติบโตด้วยการอาบแสงจันทร์"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "じょうきげん",
'zh-tw': "好心情",
th: "อารมณ์ดี"
},
effect: {
ja: "自分の山札を1枚引く。",
'zh-tw': "從自己的牌庫抽出1張卡。",
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา"
}
}, {
cost: ["Grass"],
name: {
ja: "ふむ",
'zh-tw': "踩",
th: "เหยียบ"
},
damage: 10
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card