1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/S/S9/005.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "熱帶龍",
ja: "トロピウス"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "脖子上的美味水果很受歡迎。在溫暖的地區有很多 養殖熱帶龍的牧場。",
ja: "首の フサが 美味しくて 人気。 暖かい 土地には トロピウスを 育てる 牧場が たくさん。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "治癒樹蔭",
ja: "いやしのこかげ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【草】能量的寶可夢不會【混亂】,受到的【混亂】會全部恢復。",
ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員は、こんらんにならず、受けているこんらんは、すべて回復する。"
}
}],
attacks: [{
name: {
'zh-tw': "利刃切割",
ja: "スライスブレード"
},
damage: 100,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [357]
}
export default card