1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

68
data-asia/SV/SV1V/010.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ノノクラゲ",
'zh-tw': "原野水母",
th: "โนโนะคุราเกะ",
id: "Toedscool"
},
illustrator: "Tika Matsuno",
rarity: "Common",
category: "Pokemon",
dexId: [948],
hp: 60,
types: ["Grass"],
description: {
ja: "メノクラゲに 似ているが まったく 別の 種類。 脚は 細いが 走りだせば 時速50キロになる。",
'zh-tw': "看起來像瑪瑙水母,其實是截然不同的種類。雖然腳很細, 但跑起來能達到時速50公里。",
th: "มีความคล้ายคลึงกับเมโนคุราเกะแต่ความจริงแล้วเป็นสายพันธุ์ที่ต่างกันโดยสิ้นเชิง แม้จะมีขาเรียวเล็กแต่เมื่อออกวิ่งจะมีความเร็วอยู่ที่ 50 กิโลเมตรต่อชั่วโมง",
id: "Meskipun mirip dengan Tentacool, Pokémon ini merupakan spesies yang berbeda. Kakinya ramping, tetapi kecepatan lari Toedscool mencapai 50 km/jam ketika berlari."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "キノコのほうし",
'zh-tw': "蘑菇孢子",
th: "สปอร์เห็ด",
id: "Spora Jamur"
},
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก",
id: "Menyeruduk"
},
damage: 10
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card