1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

52
data-asia/SV/SVC/005.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SVC"
const card: Card = {
set: Set,
name: {
'zh-tw': "小貓怪"
},
illustrator: "kurumitsu",
category: "Pokemon",
hp: 40,
types: ["Lightning"],
description: {
'zh-tw': "每當活動身體時,肌肉的伸縮會產生電流。當遇上危機時,身體會發光。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "大吼叫"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
}
}],
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 10,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card