mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
48
data-asia/SV/SV-P/098.ts
Normal file
48
data-asia/SV/SV-P/098.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "拉帝亞斯"
|
||||
},
|
||||
|
||||
illustrator: "hncl",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "透過心靈感應和人類交流情感。 會用能令光線折射的羽毛 變化成其他的樣子。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "0"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若這隻寶可夢身上附有【超】能量,則將這隻寶可夢【撤退】所需的能量全部消除。"
|
||||
},
|
||||
|
||||
damage: 0
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user