mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat(asian): Updated SV6 and added SV6a & SV6s (#502)
This commit is contained in:
60
data-asia/SV/SV6s/125.ts
Normal file
60
data-asia/SV/SV6s/125.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Revavroom"
|
||||
},
|
||||
|
||||
illustrator: "Hasuno",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
id: "Revavroom mengintimidasi lawan dengan suara knalpot. Pokémon ini mengeluarkan lidah dari mulut silindernya dan menyebarkan cairan beracun."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Unggul Kembali"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Jika pada giliran lawan sebelumnya, ada Pokémon sendiri yang KO karena kerusakan akibat serangan, kerusakan yang diberikan bertambah sejumlah 90."
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Berlari"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Lempar koin hingga hasilnya sisi belakang. Serangan ini memberikan kerusakan sejumlah 100 untuk tiap lemparan dengan hasil sisi depan."
|
||||
},
|
||||
|
||||
damage: "100×",
|
||||
cost: ["Metal", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user