1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

54
data-asia/SV/SVLN/010.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SVLN"
const card: Card = {
set: Set,
name: {
ja: "カビゴン"
},
illustrator: "Ounishi",
category: "Pokemon",
dexId: [143],
hp: 150,
types: ["Colorless"],
description: {
ja: "胃袋の 消化液は どんな 毒も 消化できる。 落ちているものを 食べても 平気。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "スパイクドロー"
},
damage: 20,
effect: {
ja: "自分の山札を1枚引く。"
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "メガトンパンチ"
},
damage: 100
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
rarity: "None"
}
export default card