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/S-P/191.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: "Jiro Sasumo",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "當牠越過大海飛來,便代表嚴寒的 冬季即將終結。傳說中其慈愛將使 新的生命在洗翠大地上萌芽。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "吸取之吻"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「20」HP。"
},
damage: 20,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "愛之共感"
},
effect: {
'zh-tw': "若自己的手牌的張數與對手的手牌的張數相同則增加70點傷害。"
},
damage: "70+",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card