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

56
data-asia/S/SI/201.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: "chibi",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "魔女迴旋曲"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的戰鬥寶可夢與備戰寶可夢互換。然後對手將對手自己的戰鬥寶可夢與備戰寶可夢互換。"
}
}],
attacks: [{
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card