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

55
data-asia/S/S4a/105.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 雙彈瓦斯"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
'zh-tw': "會吸收大氣中的污染成分,然後吐出新鮮的空氣,這就是牠的排泄方式。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "化學變化氣體"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手的場上寶可夢的特性(「化學變化氣體」除外)全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "惡棍猛毒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為4個。"
},
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card