1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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/S/S8/008.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "敏捷蟲"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "脫殼後變得更輕巧了。為了防止乾燥,會將帶狀的黏膜裹在身上。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "忍者龍捲風"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則這個招式只需要1個【草】能量即可使用。"
},
damage: 120,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card