1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

44
data-asia/SV/SVF/006.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SVF"
const card: Card = {
set: Set,
name: {
'zh-tw': "拉魯拉絲"
},
illustrator: "Nagomi Nijo",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "能敏銳地感知人和寶可夢的感情。一旦感受到敵意就會躲進暗處。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "記憶跳接"
},
effect: {
'zh-tw': "選擇對手的戰鬥寶可夢持有的1個招式。在下個對手的回合受到這個招式的寶可夢無法使用被選擇的招式。"
},
damage: 10,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card