1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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/S/S10P/019.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉艾斯"
},
illustrator: "aoki",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "能操控降至零下200度的寒氣,將靠近牠的東西 都在一瞬間就冰封起來。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雷吉之門"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "暴雪制約"
},
effect: {
'zh-tw': "在下個對手的回合受到這個招式的「寶可夢【V】」無法使用招式。"
},
damage: 100,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card