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

64
data-asia/S/S9/087.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "龍捲雲",
ja: "トルネロス"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "從龍捲雲尾部噴出的能量會引起暴風雨。 威力足以將整棟房屋吹走。",
ja: "トルネロスの 尻尾から 噴き出した エネルギーが 大嵐を 起こす。 民家を 吹き飛ばす パワー。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "臨場旋風",
ja: "でたとこサイクロン"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]",
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。相手のバトルポケモンをベンチポケモンと入れ替える。バトル場に出すポケモンは相手が選ぶ。"
}
}],
attacks: [{
name: {
'zh-tw': "爆破之風",
ja: "ブラストウインド"
},
damage: 100,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [641]
}
export default card