Difference between revisions of "User:Evon R'al/Sandbox"

From EVE University Wiki
Jump to: navigation, search
m (→‎Code snippets: Correction of word in wrong position)
m (Some code snippet stuff)
Line 27: Line 27:
 
* <nowiki>{{ #if: {{NAMESPACE}} | page | article }} or section</nowiki> - {{ #if: {{NAMESPACE}} | page | article }} or section
 
* <nowiki>{{ #if: {{NAMESPACE}} | page | article }} or section</nowiki> - {{ #if: {{NAMESPACE}} | page | article }} or section
  
 
'''MessageBox with logo'''
 
 
[[File:Logo ded.png|Logo ded.png]]
 
[[File:Icon warning.png|icon warning.png]]
 
[[File:Icon information square.png|Icon information square.png]]
 
[[File:Helpicon.png|Helpicon.png]]
 
 
{{MessageBox
 
|On activating gate: [[File:Logo ded.png|35px|bottom|link=|alt= DED logo]] Database Information
 
|Text
 
|collapsed= yes
 
}}
 
  
  
Line 104: Line 91:
 
{{T|Hatnote}} to link back to multi level/faction disambiguation pages:
 
{{T|Hatnote}} to link back to multi level/faction disambiguation pages:
  
{{hatnote|This article details the Level ? <Faction> version of this mission. For other variants, see [[<Mission>|<Mission> (disambiguation)]].}}
+
{{hatnote|This article details the Level ?, <Faction> version of this mission. For other variants, see [[<Mission>|<Mission> (disambiguation)]].}}
 +
 
 +
=== MessageBox with logo ===
 +
Some possible logo's
 +
 
 +
[[File:Logo ded.png|Logo ded.png]]
 +
[[File:Icon warning.png|icon warning.png]]
 +
[[File:Icon information square.png|Icon information square.png]]
 +
[[File:Helpicon.png|Helpicon.png]]
 +
 
 +
{{MessageBox
 +
|On activating gate: [[File:Logo ded.png|35px|bottom|link=|alt= DED logo]] Database Information
 +
|Text
 +
|collapsed= yes
 +
}}
 +
 
 +
=== Some table stuff ===
 +
HTML table
 +
<table border="1">
 +
<tr><td>Amarr, Blood Raider, Sansha, CONCORD</td><td>Helium isotopes</td></tr>
 +
<tr><td>Caldari, Gurista</td><td>Nitrogen isotopes</td></tr>
 +
<tr><td>Gallente, ORE, Serpentis</td><td>Oxygen isotopes</td></tr>
 +
<tr><td>Minmatar</td><td>Hydrogen isotopes</td></tr>
 +
</table>
 +
 
 +
 
 +
Wiki markup table
 +
{|
 +
!Faction!!Isotope type
 +
|-
 +
|Amarr, Blood Raider, Sansha, CONCORD||Helium
 +
|-
 +
|Caldari, Gurista||Nitrogen
 +
|-
 +
|Gallente, ORE, Serpentis||Oxygen
 +
|-
 +
|Minmatar||Hydrogen
 +
|}
 +
 
 +
Wiki markup table with class wikitable
 +
{| class="wikitable"
 +
!Faction!!Isotope type
 +
|-
 +
|Amarr, Blood Raider, Sansha, CONCORD||Helium
 +
|-
 +
|Caldari, Gurista||Nitrogen
 +
|-
 +
|Gallente, ORE, Serpentis||Oxygen
 +
|-
 +
|Minmatar||Hydrogen
 +
|}
 +
 
 +
 
 +
"Complicated" table
 +
{| class="wikitable"
 +
|-
 +
! Ship class
 +
! Ship type
 +
! Base Range
 +
! Max Skills Range
 +
! Fuel per ly
 +
! Fuel bay (m3)
 +
! Fuel bay (units)
 +
|-
 +
| rowspan="3" |Capital
 +
| Dreadnought
 +
| rowspan="3" |3.5 ly
 +
| rowspan="3" |7 ly
 +
| rowspan="3" |3000 units
 +
| 8 000
 +
| 266 666
 +
|-
 +
| Carrier
 +
| rowspan="2" |3 000
 +
| rowspan="2" |100 000
 +
|-
 +
| FAX
 +
|-
 +
| rowspan="2" |Super Capital
 +
| Supercarrier
 +
| rowspan="2" |3.0 ly
 +
| rowspan="2" |6 ly
 +
| rowspan="2" |3000 units
 +
| 5 000
 +
| 166 666
 +
|-
 +
| Titan
 +
| 60 000
 +
| 2 000 000
 +
|-
 +
| rowspan="4" |Jump Freighter
 +
| Anshar
 +
| rowspan="4" |5.0 ly
 +
| rowspan="4" |10 ly
 +
| 9400 units
 +
| rowspan="4" |12 000
 +
| rowspan="4" |400 000
 +
|-
 +
| Nomad
 +
| 8200 units
 +
|-
 +
| Ark
 +
| 8800 units
 +
|-
 +
| Rhea
 +
| 10000  units
 +
|-
 +
| colspan="2" |Black Ops Battleship
 +
| 4.0 ly
 +
| 8 ly 
 +
| 700 units
 +
| 2 150
 +
| 71 666
 +
|-
 +
| Capital Industrial Ship
 +
| Rorqual
 +
| 5 ly
 +
| 10 ly
 +
| 4000 units
 +
| 10 000
 +
| 333 333
 +
|}
 +
 
 +
 
 +
"Complicated" table reformatted and with some "fancy" CSS
 +
{{#css:
 +
#compare td:nth-last-child(1), #compare td:nth-last-child(2), #compare td:nth-last-child(3) { text-align: right }
 +
#compare td:nth-last-child(4), #compare td:nth-last-child(5) { text-align: center}
 +
#compare td:nth-child(1) { text-align: left } /* This line is needed because of the use of rowspan */
 +
/* The #compare id is needed because without it al tables on the page would use this CSS */
 +
}}
 +
{| class="wikitable" id="compare"
 +
|-
 +
! rowspan= 2 |Ship class
 +
! rowspan= 2 |Ship type
 +
! colspan= 2 |Range (ly)
 +
! rowspan= 2 |Fuel per ly<br>(units)
 +
! colspan= 2 |Fuel bay
 +
|-
 +
! Base
 +
! Max Skills
 +
! (m3)
 +
! (units)
 +
|-
 +
| rowspan="3" |Capital
 +
| Dreadnought
 +
| rowspan="3" |3.5
 +
| rowspan="3" |7
 +
| rowspan="3" |3 000
 +
| 8 000
 +
| 266 666
 +
|-
 +
| Carrier
 +
| rowspan="2" |3 000
 +
| rowspan="2" |100 000
 +
|-
 +
| FAX
 +
|-
 +
| rowspan="2" |Super Capital
 +
| Supercarrier
 +
| rowspan="2" |3.0
 +
| rowspan="2" |6
 +
| rowspan="2" |3 000
 +
| 5 000
 +
| 166 666
 +
|-
 +
| Titan
 +
| 60 000
 +
| 2 000 000
 +
|-
 +
| rowspan="4" |Jump Freighter
 +
| Anshar
 +
| rowspan="4" |5.0
 +
| rowspan="4" |10
 +
| 9 400
 +
| rowspan="4" |12 000
 +
| rowspan="4" |400 000
 +
|-
 +
| Nomad
 +
| 8 200
 +
|-
 +
| Ark
 +
| 8 800
 +
|-
 +
| Rhea
 +
| 10 000
 +
|-
 +
| colspan="2" |Black Ops Battleship
 +
| 4.0
 +
| 8
 +
| 700
 +
| 2 150
 +
| 71 666
 +
|-
 +
| Capital Industrial Ship
 +
| Rorqual
 +
| 5
 +
| 10
 +
| 4 000
 +
| 10 000
 +
| 333 333
 +
|}
 +
 
  
 
== Template being worked on ==
 
== Template being worked on ==
Line 114: Line 303:
 
Draft:
 
Draft:
 
{{User:Evon R'al/Sandbox template}}
 
{{User:Evon R'al/Sandbox template}}
 +
 +
== References ==

Revision as of 12:32, 14 November 2021

Test

subst and not

date= {{#time: F Y}} - date= September 2024 (The present)
date= {{subst:#time: F Y}} - date= June 2021 (At time of saving the edit)


Indent behavior

Test 1
Test 2
Test 3
Test 4
Test 5
Test 6
Test 7

Test 8


template Co

This text is red
This text is also red
Here the background is red


NAMESPACE test

  • {{ #if: {{NAMESPACE}} | page | article }} or section - page or section


Note box

While running this mission inside Minmatar Republic space.

Message when jumping back to the agents solar system

question mark Hand over contraband?
Minmatar Republic has discovered the contraband which you are transporting. If you decline to hand it over, your ship will be destroyed. Do not be alarmed, while we are waiting for for your response, one of our number will target, warp scramble and stasis web you – for your safety ….

Handing over the slaves incurred a 60.000 ISK fine and -0.1 standing loss towards Minmatar Republic.

Surprisingly the slaves where still in the cargo hold when reporting back to the agent so the mission could be completed.


CSS testing

  • Line one
  • line two
  • line three


  • line one

Code snippets

No more mineable asteroids in missons:

Various mission site locations have had mineable asteroids replaced with cosmetic asteroids. (30/03/2020)[1]

{{Hatnote}} to link back to multi level/faction disambiguation pages:

This article details the Level ?, <Faction> version of this mission. For other variants, see [[<Mission>|<Mission> (disambiguation)]].

Some possible logo's

Logo ded.png icon warning.png Icon information square.png Helpicon.png

On activating gate: DED logo Database Information
Text

Some table stuff

HTML table

Amarr, Blood Raider, Sansha, CONCORDHelium isotopes
Caldari, GuristaNitrogen isotopes
Gallente, ORE, SerpentisOxygen isotopes
MinmatarHydrogen isotopes


Wiki markup table

Faction Isotope type
Amarr, Blood Raider, Sansha, CONCORD Helium
Caldari, Gurista Nitrogen
Gallente, ORE, Serpentis Oxygen
Minmatar Hydrogen

Wiki markup table with class wikitable

Faction Isotope type
Amarr, Blood Raider, Sansha, CONCORD Helium
Caldari, Gurista Nitrogen
Gallente, ORE, Serpentis Oxygen
Minmatar Hydrogen


"Complicated" table

Ship class Ship type Base Range Max Skills Range Fuel per ly Fuel bay (m3) Fuel bay (units)
Capital Dreadnought 3.5 ly 7 ly 3000 units 8 000 266 666
Carrier 3 000 100 000
FAX
Super Capital Supercarrier 3.0 ly 6 ly 3000 units 5 000 166 666
Titan 60 000 2 000 000
Jump Freighter Anshar 5.0 ly 10 ly 9400 units 12 000 400 000
Nomad 8200 units
Ark 8800 units
Rhea 10000 units
Black Ops Battleship 4.0 ly 8 ly 700 units 2 150 71 666
Capital Industrial Ship Rorqual 5 ly 10 ly 4000 units 10 000 333 333


"Complicated" table reformatted and with some "fancy" CSS

Ship class Ship type Range (ly) Fuel per ly
(units)
Fuel bay
Base Max Skills (m3) (units)
Capital Dreadnought 3.5 7 3 000 8 000 266 666
Carrier 3 000 100 000
FAX
Super Capital Supercarrier 3.0 6 3 000 5 000 166 666
Titan 60 000 2 000 000
Jump Freighter Anshar 5.0 10 9 400 12 000 400 000
Nomad 8 200
Ark 8 800
Rhea 10 000
Black Ops Battleship 4.0 8 700 2 150 71 666
Capital Industrial Ship Rorqual 5 10 4 000 10 000 333 333


Template being worked on

Original:


Draft:


References