1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 03:50:46 +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

56
data-asia/S/SI/231.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 死神板"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "絕對不能觸摸牠影子般的身體,否則牠會讓你看到 印刻在牠畫中的恐怖記憶。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "怨恨石板"
},
effect: {
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的「寶可夢【VMAX】」招式的傷害時將與受到的傷害相同數值的傷害指示物放置於使用招式的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "能量壓制"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。"
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card