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

59
data-asia/SV/SV2a/120.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ヒトデマン",
'zh-tw': "海星星",
th: "ฮิโตเดมัน",
id: "Staryu"
},
illustrator: "Arai Kiriko",
rarity: "Common",
category: "Pokemon",
dexId: [120],
hp: 60,
types: ["Water"],
description: {
ja: "魚ポケモンに ついばまれるが 体が ちぎれても すぐに 再生するので 気にしない。",
'zh-tw': "會被魚寶可夢啄食,但是即使身體被咬斷也能很快就 再生,所以一點都不在意。",
th: "ถึงแม้ร่างกายจะโดนโปเกมอนปลาตอดกินจนขาดไปก็ไม่สนใจเพราะจะงอกออกมาใหม่ทันที",
id: "Meskipun tubuhnya putus tercabik karena digigit oleh Pokémon ikan, Staryu tidak peduli karena tubuhnya akan segera tumbuh kembali."
},
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "スピードスター",
'zh-tw': "高速星星",
th: "สปีดสตาร์",
id: "Speed Star"
},
damage: 30,
effect: {
ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำจุดอ่อน ความต้านทาน และเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด",
id: "Kerusakan akibat serangan ini tidak terpengaruh oleh Kelemahan, Resistansi, dan efek yang sedang dialami Pokémon Bertarung lawan."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card