1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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/SV/SVD/060.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "路卡利歐"
},
illustrator: "Nurikabe",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "只要透過捕捉波導,據說就能夠看見原本 看不見身影的對手。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "復仇關節"
},
effect: {
'zh-tw': "在上個對手的回合若自己的【鬥】寶可夢因招式的傷害而【昏厥】了則增加120點傷害。"
},
damage: "30+",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "加速突刺"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「加速突刺」。"
},
damage: 120,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card