1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09: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

55
data-asia/S/S-P/173.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉奇卡斯"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 150,
types: ["Colorless"],
description: {
'zh-tw': "在世上流傳著的傳說中,牠拉動了被繩子所綑綁的大地。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "暖身"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於這隻寶可夢身上。"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "雙重衝擊"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×120點傷害。"
},
damage: "120×",
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "F"
}
export default card