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

77
data-asia/SV/SV1a/001.ts Normal file
View File

@ -0,0 +1,77 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "トロピウス",
'zh-tw': "熱帶龍",
th: "โทรพิอุส",
id: "Tropius"
},
illustrator: "Taira Akitsu",
rarity: "Common",
category: "Pokemon",
dexId: [357],
hp: 110,
types: ["Grass"],
description: {
ja: "熱帯の ジャングルに 生息。 首の フサは 甘くて 美味しい。 1年に 2回 実を つける。",
'zh-tw': "棲息在熱帶叢林裡。脖子上的果實香甜美味。 每年會結果2次。",
th: "อาศัยอยู่ในป่าเขตร้อน เครือผลที่คอรสชาติหวานอร่อย 1 ปีจะออกผลแค่ 2 ครั้ง",
id: "Tropius hidup di hutan tropis. Tandan di leher Pokémon ini rasanya manis dan lezat, dan berbuah 2 kali dalam 1 tahun."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "リーフドレイン",
'zh-tw': "綠葉吸取",
th: "ลีฟเดรน",
id: "Leaf Drain"
},
damage: 20,
effect: {
ja: "このポケモンのHPを「20」回復する。",
'zh-tw': "將這隻寶可夢恢復「20」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]",
id: "Pulihkan HP Pokémon ini sejumlah 20."
}
}, {
cost: ["Grass", "Grass", "Colorless"],
name: {
ja: "なんごくのかぜ",
'zh-tw': "南國之風",
th: "สายลมจากแดนใต้",
id: "Angin Tropis"
},
damage: 130,
effect: {
ja: "このポケモンについているエネルギーをすべて、ベンチポケモン1匹につけ替える。",
'zh-tw': "將這隻寶可夢身上附加的能量卡全部改附於1隻備戰寶可夢身上。",
th: "นำพลังงานที่ติดอยู่กับโปเกมอนนี้ทั้งหมด ย้ายไปติดกับโปเกมอนบนเบนช์ 1 ตัว",
id: "Pindahkan semua Energi yang dikenakan pada Pokémon ini ke 1 Pokémon Cadangan."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card