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

54
data-asia/S/S12/001.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "走路草",
th: "นาโซโนะคุสะ",
ja: "ナゾノクサ"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "沐浴月光就會開始活動。為了四處散播種子, 會在夜晚到處走動。",
th: "เริ่มขยับตัวเมื่อได้อาบแสงจันทร์ จะเดินวนไปมาเพื่อโปรยเมล็ดพันธุ์ในยามกลางคืน",
ja: "月の光を 浴びて 動きだす。 夜のあいだに タネを あちこちに ばらまくため 歩きまわる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "飛葉回力鏢",
th: "บูมเมอแรงใบไม้",
ja: "はっぱブーメラン"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10",
ja: "コインを2回投げ、オモテの数×10ダメージ。"
},
damage: "10×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [43]
}
export default card