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

47
data-asia/S/S-P/130.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "草苗龜"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "用全身進行光合作用,製造氧氣。當口渴的時候,頭上的葉子就會枯萎。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 10,
cost: ["Grass"]
}, {
name: {
'zh-tw': "魯莽頭擊"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card