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:
54
data-asia/SV/SVLN/010.ts
Normal file
54
data-asia/SV/SVLN/010.ts
Normal 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
|
Reference in New Issue
Block a user