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

50
data-asia/S/SC1a/001.ts Normal file
View File

@ -0,0 +1,50 @@
import Set from "."
import { Card } from "../../../interfaces"
const card: Card = {
set: Set,
name: {
'zh-tw': "飛天螳螂"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "以忍者般敏捷的動作迷惑獵物,然後趁對方露出破綻的一瞬間用鐮刀將獵物切碎。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "劍舞"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢「高速鐮」的傷害「+70」點。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "高速鐮"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card