1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/S4/042.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "脫殼忍者"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
'zh-tw': "牠是一種在土居忍士進化時,會神不知鬼不覺地出現在精靈球裡的神奇寶可夢。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "脫殼定身法"
},
effect: {
'zh-tw': "這張卡只可依據鐵面忍者的特性「脫殼」的效果放置於場上。(這張卡在對戰準備時也不可放置於場上)"
}
}],
attacks: [{
name: {
'zh-tw': "生命榨取"
},
effect: {
'zh-tw': "在對手的戰鬥寶可夢身上放置傷害指示物直到剩餘HP變為「10」為止。"
},
cost: ["Colorless", "Colorless", "Colorless"]
}],
retreat: 1,
regulationMark: "D"
}
export default card