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

54
data-asia/SV/SV4a/206.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ノノクラゲ",
'zh-tw': "原野水母",
id: "Toedscool"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
dexId: [948],
hp: 50,
types: ["Grass"],
description: {
ja: "メノクラゲに 似ているが まったく 別の 種類。 脚は 細いが 走りだせば 時速50キロになる。",
'zh-tw': "看起來像瑪瑙水母,其實是截然不同的種類。雖然腳很細, 但跑起來能達到時速50公里。",
id: "Meskipun mirip dengan Tentacool, Pokémon ini merupakan spesies yang berbeda. Kakinya ramping, tetapi kecepatan lari Toedscool dapat mencapai 50 km/jam."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "みだれげり",
'zh-tw': "亂踢",
id: "Tendangan Tidak Teratur"
},
damage: "10×",
effect: {
ja: "コインを3回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲3次硬幣造成正面出現的次數×10點傷害。",
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card