1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +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/S8/044.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 魔靈珊瑚"
},
illustrator: "sui",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
description: {
'zh-tw': "一定要小心牠那包覆著靈魂的靈體。如果觸摸到,就會像石頭一樣動彈不得。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "強迫再生"
},
effect: {
'zh-tw': "從對手的棄牌區選擇1張【基礎】寶可夢的「寶可夢【V】」卡放置於對手的備戰區。然後在身上放置傷害指示物直到那隻寶可夢的剩餘HP變為「30」為止。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "陰森射擊"
},
damage: 80,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card