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

56
data-asia/S/SC1a/112.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雙劍鞘"
},
illustrator: "Aya Kusube",
category: "Pokemon",
hp: 90,
types: ["Metal"],
description: {
'zh-tw': "進化之後變成了雙胞胎。用互相摩擦劍刃發出的聲音來威嚇對手。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈開"
},
damage: 30,
cost: ["Metal", "Colorless"]
}, {
name: {
'zh-tw': "二連斬"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×80點傷害。"
},
damage: "80×",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card